-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.2 KB
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
{
"name": "createvue",
"version": "1.0.0",
"description": "none",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --hot --open --inline --config build/webpack.dev.js --api_env botme",
"commit": "node commit/git-commit.js",
"build:dll": "webpack --config ./build/webpack.dll.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"push:dist": "vuepress build docs && node ./publish.js",
"build": "webpack --config build/webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zxpsuper/createVue.git"
},
"keywords": [
"create",
"vue"
],
"author": "suporka",
"license": "MIT",
"bugs": {
"url": "https://github.com/zxpsuper/createVue/issues"
},
"homepage": "https://github.com/zxpsuper/createVue#readme",
"devDependencies": {
"add-asset-html-webpack-plugin": "^3.1.3",
"autoprefixer": "^9.1.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^1.0.0",
"file-loader": "^1.1.11",
"happypack": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.3.1",
"inquirer": "^6.2.1",
"less": "^3.8.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.2",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-loader": "^2.1.6",
"sass-loader": "^7.1.0",
"shelljs": "^0.8.3",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.1.2",
"vue-loader": "^15.2.6",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.3.0",
"webpack-merge": "^4.1.4",
"workbox-webpack-plugin": "^4.3.1"
},
"dependencies": {
"axios": "^0.18.1",
"es6-promise": "^4.2.5",
"gh-pages": "^2.1.1",
"normalize-wheel": "^1.0.1",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
}
}