-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·83 lines (83 loc) · 2.13 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "woodstack",
"version": "0.0.1",
"description": "It's amazing, also, I'm amazing.",
"private": true,
"watch": {
"build-html": {
"patterns": "src/html",
"extensions": "pug",
"quiet": false
},
"build-css": {
"patterns": "src/sass",
"extensions": "scss",
"quiet": false
},
"build-js": {
"patterns": [
"src/js/"
],
"extensions": "js",
"quiet": false
},
"build-img": {
"patterns": "src/img",
"extensions": "png,jpg,jpeg,gif",
"quiet": false
},
"build-copy": {
"patterns": [
"src/fonts",
"src/favicon",
"src/sounds"
],
"extensions": "*",
"quiet": false
}
},
"scripts": {
"build-html": "pug src/html/templates --out dist",
"watch-html": "npm-watch build-html",
"build-css": "node-sass src/sass/style.scss dist/style.css --output-style compressed",
"watch-css": "npm-watch build-css",
"js-dir": "make-dir dist/js",
"js-wp": "webpack",
"build-js": "run-s js-dir js-wp",
"watch-js": "npm-watch build-js",
"build-img": "imagemin src/img/*.{png,jpg,jpeg,gif} --out-dir=dist/img",
"watch-img": "npm-watch build-img",
"build-copy": "copyfiles -u 1 src/fonts/* src/favicon src/sounds/* dist",
"watch-copy": "npm-watch build-copy",
"watch": "run-p watch-*",
"build": "run-s clear build-*",
"clear": "del-cli dist -f",
"browser": "reload -d dist -b"
},
"author": "Matthieu Schneider",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"copyfiles": "^2.1.1",
"del-cli": "^3.0.0",
"imagemin-cli": "^5.0.0",
"make-dir-cli": "^1.0.0",
"node-sass": "^4.13.0",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.6.0",
"pug": "^2.0.4",
"pug-cli": "^1.0.0-alpha6",
"reload": "^3.0.3",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"normalize.css": "^8.0.1",
"toastr": "^2.1.4",
"wowjs": "^1.1.3"
}
}