-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 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
{
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-runtime": "^6.0.0",
"chalk-cli": "^3.0.0",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-html": "^1.7.0",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"faker": "^3.1.0",
"file-loader": "^0.9.0",
"html-webpack-harddisk-plugin": "^0.0.2",
"html-webpack-plugin": "^2.26.0",
"vue-hot-reload-api": "^1.2.0",
"vue-html-loader": "^1.0.0",
"vue-loader": "^8.5.4",
"vue-style-loader": "^1.0.0",
"webpack": "^1.14.0",
"webpack-dashboard": "^0.2.1",
"webpack-dev-server": "^1.16.2"
},
"name": "spa-in-action",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"serve": "webpack-dashboard -- webpack-dev-server --quiet -d --content-base dist/",
"dev": "cross-env NODE_ENV=development webpack --progress --hide-modules -d --watch",
"build": "cross-env NODE_ENV=production webpack --progress -p",
"postbuild": "chalk bold bgGreen black 'Build Sucess!'"
},
"dependencies": {
"vue": "^1.0.28"
}
}