-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 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
30
31
32
33
34
{
"name": "app",
"version": "0.0.1",
"description": "",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watchify src/app.js -o public/app.js -p [parcelify -wo public/style.css] -g [envify --NODE_ENV development] -t vueify -v -d",
"build": "browserify src/app.js -o public/app.js -p [parcelify -o public/style.css] -g [envify --NODE_ENV production] -t vueify -g uglifyify && cleancss -o public/style.css public/style.css",
"serve": "http-server",
"dev": "npm-run-all --parallel watch serve"
},
"author": "Jonas Laursen",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"browserify": "^14.1.0",
"clean-css-cli": "^4.0.8",
"envify": "^4.0.0",
"http-server": "^0.9.0",
"npm-run-all": "^4.0.2",
"parcelify": "^2.2.0",
"sass-css-stream": "^0.1.6",
"superagent": "^3.5.0",
"uglifyify": "^3.0.4",
"vue": "^2.1.10",
"vueify": "^9.4.0",
"watchify": "^3.9.0"
},
"style": "src/theme.scss",
"transforms": ["sass-css-stream"]
}