-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (58 loc) · 1.85 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "static-boilerplate",
"version": "0.1.0",
"private": true,
"license": "UNLICENSED",
"repository": "ericorruption/static-boilerplate",
"scripts": {
"favicon": "ncp src/icons dist",
"html": "html-minifier --collapse-whitespace --file-ext html --input-dir src --output-dir dist",
"precss": "stylelint \"src/scss/**/*.scss\"",
"css": "node-sass src/scss/ -o dist/css/tmp --include-path=node_modules",
"postcss": "postcss --use colorguard --use autoprefixer --use cssnano -d dist/css/ dist/css/tmp/*.css --no-map",
"js": "webpack --mode production",
"img": "ncp src/img dist/img",
"watch-html": "chokidar src/index.html -c \"npm run html\"",
"watch-css": "chokidar src/scss/ -c \"npm run css\"",
"watch-js": "webpack --mode development --watch",
"watch-img": "chokidar src/img/ -c \"npm run img\"",
"watch": "npm-run-all --parallel watch-*",
"serve": "browser-sync start --server dist --files 'dist', '!dist/css/tmp/**/*'",
"build": "npm-run-all favicon html css js img",
"prestart": "npm run build",
"start": "npm-run-all --parallel watch serve",
"gh-deploy": "sh scripts/gh-deploy.sh"
},
"dependencies": {
"normalize.css": "8.0.0"
},
"devDependencies": {
"autoprefixer": "8.4.1",
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-preset-env": "^1.6.1",
"browser-sync": "2.24.4",
"chokidar-cli": "^1.2.0",
"colorguard": "1.2.1",
"cssnano": "^3.10.0",
"html-minifier": "3.5.15",
"ncp": "^2.0.0",
"node-sass": "4.9.0",
"npm-run-all": "4.1.2",
"postcss-cli": "5.0.0",
"standard": "11.0.1",
"stylelint": "9.2.0",
"stylelint-config-standard": "18.2.0",
"webpack": "4.7.0",
"webpack-cli": "2.1.2"
},
"babel": {
"presets": [
"env"
]
},
"prettier": {
"singleQuote": true,
"semi": false
}
}