-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.49 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
{
"name": "webpackvuetodo",
"version": "1.0.0",
"description": "学习webpack+vue打造一个Todo应用,学习地址:https://www.imooc.com/learn/935",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js --progress --colors",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CosSalt/WebpackVueTodo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CosSalt/WebpackVueTodo/issues"
},
"homepage": "https://github.com/CosSalt/WebpackVueTodo#readme",
"dependencies": {
"vue": "^2.5.13"
},
"devDependencies": {
"autoprefixer": "^7.2.3",
"babel-core": "^6.16.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.3",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"postcss-loader": "^2.0.9",
"style-loader": "^0.19.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"url-loader": "^0.6.2",
"vue-loader": "^13.6.0",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.2"
}
}