-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (34 loc) · 1.19 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
{
"name": "trillo-front-end",
"version": "1.0.0",
"description": "A mockup hotel booking site.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch-sass": "node-sass ./sass/main.scss ./css/style.css -w",
"live-server": "live-server",
"start": "npm-run-all --parallel watch-sass live-server",
"compile-sass": "node-sass ./sass/main.scss ./css/style.comp.css",
"prefix-css": "postcss --use autoprefixer -b 'last 10 versions' ./css/style.comp.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-sass prefix-css compress-css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jayli3n/trillo-front-end.git"
},
"keywords": [],
"author": "jayli3n",
"license": "ISC",
"bugs": {
"url": "https://github.com/jayli3n/trillo-front-end/issues"
},
"homepage": "https://github.com/jayli3n/trillo-front-end#readme",
"devDependencies": {
"autoprefixer": "^9.5.1",
"concat": "^1.0.3",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.2"
}
}