-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (26 loc) · 757 Bytes
/
package.json
File metadata and controls
27 lines (26 loc) · 757 Bytes
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
{
"name": "trillo",
"version": "1.0.0",
"description": "Trillo app",
"main": "index.js",
"scripts": {
"watch:sass": "node-sass sass/main.scss css/style.css -w",
"devserver": "live-server",
"start": "npm-run-all --parallel devserver watch:sass",
"compile:sass": "node-sass sass/main.scss css/style.comp.css",
"compress:css": "node-sass css/style.comp.css css/style.css --output-style compressed",
"build:css": "npm-run-all compile:sass compress:css"
},
"author": "Arpit",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.20",
"concat": "^1.0.3",
"node-sass": "^9.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^11.0.0"
},
"dependencies": {
"live-server": "^1.2.2"
}
}