-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.78 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
{
"name": "synth-from-hell",
"version": "0.0.1",
"description": "A HTML audio API example",
"license": "MIT",
"author": "Allan Esquina",
"repository": "https://github.com/allanesquina/synth-from-hell.git",
"scripts": {
"favicon": "ncp src/icons dist",
"html": "html-minifier --collapse-whitespace --file-ext html --input-dir src --output-dir dist",
"precss": "",
"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",
"prejs": "",
"js": "webpack -p",
"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 --watch --progress -d",
"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"
},
"dependencies": {
"jquery": "^3.3.1",
"normalize.css": "^7.0.0"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.18.13",
"chokidar-cli": "^1.2.0",
"colorguard": "^1.2.0",
"cssnano": "^3.10.0",
"html-minifier": "^3.5.6",
"ncp": "^2.0.0",
"node-sass": "^4.5.3",
"npm-run-all": "^4.1.1",
"postcss-cli": "^4.1.1",
"standard": "^10.0.3",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"webpack": "^3.8.1"
},
"babel": {
"presets": [
"env"
]
}
}