-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1022 Bytes
/
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
{
"name": "redapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"listen:sass": "node-sass sass/main.scss css/style.css -w",
"server": "live-server --browser=firefox",
"init:sass": "npm-run-all --parallel listen:sass",
"init": "npm-run-all --parallel server listen:sass",
"compiled:sass": "node-sass sass/main.scss css/style.compiled.css",
"concatenated:css": "concat -o css/style.concatenated.css vendors/font-awesome-4.7.0/css/all.css css/style.compiled.css",
"compressed:css": "node-sass css/style.concatenated.css css/stylemin.css --output-style compressed",
"final-build:css": "npm-run-all compiled:sass concatenated:css compressed:css"
},
"author": "Oskar",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.2.0",
"concat": "^1.0.3",
"node-sass": "^6.0.1",
"postcss-cli": "^8.3.1"
},
"dependencies": {
"edge-launcher": "^1.2.2",
"npm-run-all": "^4.1.5"
}
}