-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (28 loc) · 933 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "nexter",
"version": "1.0.0",
"description": "Landing page for Nexter",
"main": "index.js",
"browserslist": ["last 5 versions"],
"scripts": {
"watch:sass": "sass sass/main.scss css/style.css -w",
"devserver": "live-server",
"start": "npm-run-all --parallel devserver watch:sass",
"compile:sass": "sass sass/main.scss css/style.comp.css",
"prefix:css": "postcss --use=autoprefixer -map=false css/style.comp.css --output=css/style.prefix.css",
"compress:css": "sass css/style.prefix.css css/style.css --style compressed",
"build:css": "npm-run-all compile:sass prefix:css compress:css"
},
"author": "Jacobs",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.8.6",
"concat": "^1.0.3",
"postcss-cli": "^11.0.0",
"sass": "^1.69.5"
},
"dependencies": {
"font-awesome": "^4.7.0",
"npm-run-all": "^4.1.5"
}
}