forked from Costava/solitaire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.14 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
{
"name": "solitaire",
"version": "0.1.1",
"description": "Play solitaire.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"update-images": "node encode-images.js",
"prep-dev": "node build-css.js & node build-js.js",
"prep-production": "node build-css.js -p & node build-js.js -p",
"empty-prep": "node empty-dir.js ./prep",
"build-dev": "mkdirp ./prep && npm run prep-dev && node embed.js ./src/index.html ./dist/index.html --css ./prep/final.css --js ./prep/bundle.js",
"build-production": "mkdirp ./prep && npm run prep-production && node embed.js ./src/index.html ./dist/index.html --css ./prep/final.min.css --js ./prep/bundle.min.js && node minify-dist.js",
"start-server": "node server.js",
"webpack": "webpack ./src/scripts/main.js ./prep/bundle.js"
},
"devDependencies": {
"babel-core": "6.21.0",
"babel-loader": "6.2.10",
"babel-preset-es2015": "6.18.0",
"cssnano": "3.9.1",
"datauri": "1.0.5",
"fs-extra": "1.0.0",
"html-minifier": "3.2.3",
"mkdirp": "1.0.4",
"postcss": "5.2.8",
"postcss-advanced-variables": "1.2.2",
"webpack": "1.14.0"
}
}