-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (35 loc) · 1.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "natours",
"version": "1.0.0",
"description": "Landing page for natours",
"main": "index.js",
"scripts": {
"watch:scss": "node-sass --watch scss/main.scss css/style.css",
"dev-server": "live-server",
"start": "npm-run-all --parallel watch:scss dev-server",
"compile:scss": "node-sass scss/main.scss css/style.comp.css",
"concat:css": "concat -o css/style.concat.css css/icon-font.css css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' css/style.concat.css -o css/style.prefix.css",
"compress:css": "node-sass css/style.prefix.css css/style.min.css --output-style compressed",
"build:css": "npm-run-all compile:scss concat:css prefix:css compress:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trinhminhnhat/html-css-natours.git"
},
"author": "Trịnh Minh Nhật",
"license": "ISC",
"bugs": {
"url": "https://github.com/trinhminhnhat/html-css-natours/issues"
},
"homepage": "https://github.com/trinhminhnhat/html-css-natours#readme",
"devDependencies": {
"autoprefixer": "^10.4.13",
"concat": "^1.0.3",
"live-server": "^1.2.2",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0"
}
}