-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
128 lines (128 loc) · 3.92 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "ya-spa-vue",
"description": "A SPA bootstrap for yazuo powered by vue",
"version": "0.0.1-alpha.0",
"author": "q13 <[email protected]>",
"main": "./index.js",
"scripts": {
"dev": "node --max-old-space-size=8192 tools/dev-server.js",
"start": "node tools/dev-server.js",
"dll": "node tools/dll.js",
"dist": "webpack --config tools/webpack.dist.conf.js",
"build": "node --max-old-space-size=8192 tools/build.js --app-env=prod --app-name=test --api-domain=i.yazuo.com --public-path= --is-test=1",
"mock": "node ./tools/mock.js",
"lint": "eslint --ext .js,.vue src",
"flow-typed": "flow-typed install",
"flow": "./node_modules/.bin/flow check",
"flowserver": "./node_modules/.bin/flow server",
"stopflow": "./node_modules/.bin/flow stop",
"dep": "node tools/install-deps.js",
"chunk": "node tools/make-chunks.js"
},
"repository": {
"type": "git",
"url": "https://github.com/q13/vue-spa-template.git"
},
"dependencies": {
"axios": "0.16.2",
"babel-polyfill": "6.26.0",
"element-dataset": "2.2.6",
"fastclick": "1.0.6",
"hammerjs": "2.0.8",
"lodash": "4.17.5",
"moment": "2.19.3",
"raf": "3.4.0",
"store": "2.0.12",
"vue": "2.5.13",
"vue-router": "3.0.1",
"vuex": "3.0.1",
"ya-ui-vue": "^2.2.3"
},
"devDependencies": {
"autoprefixer": "7.1.2",
"babel-core": "6.26.0",
"babel-eslint": "7.1.1",
"babel-loader": "7.1.2",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-plugin-syntax-flow": "6.18.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-runtime": "6.22.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.26.0",
"base64-font-loader": "0.0.4",
"body-parser": "1.18.2",
"chalk": "2.0.1",
"connect-history-api-fallback": "1.3.0",
"copy-webpack-plugin": "4.0.1",
"cross-env": "5.0.5",
"css-loader": "0.28.10",
"cssnano": "3.10.0",
"eslint": "3.19.0",
"eslint-config-standard": "6.2.1",
"eslint-friendly-formatter": "3.0.0",
"eslint-loader": "1.7.1",
"eslint-plugin-flowtype": "2.35.1",
"eslint-plugin-flowtype-errors": "3.3.1",
"eslint-plugin-html": "3.0.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-node": "5.2.0",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-standard": "2.0.1",
"eslint-plugin-vue": "2.1.0",
"eventsource-polyfill": "0.9.6",
"express": "4.14.1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.9",
"flow-bin": "0.54.1",
"flow-typed": "2.2.0",
"friendly-errors-webpack-plugin": "1.1.3",
"fs-extra": "5.0.0",
"glob": "7.1.2",
"happypack": "4.0.1",
"html-loader": "0.5.1",
"html-webpack-plugin": "2.30.1",
"http-proxy-middleware": "0.17.4",
"less": "2.7.3",
"less-loader": "4.0.5",
"mockjs": "1.0.1-beta3",
"node-sass": "4.7.2",
"opn": "5.1.0",
"optimize-css-assets-webpack-plugin": "2.0.0",
"ora": "1.2.0",
"postcss-calc": "6.0.1",
"postcss-import": "11.0.0",
"postcss-modules": "1.0.0",
"rap-node-plugin": "0.2.2",
"rimraf": "2.6.0",
"sass-loader": "6.0.6",
"sass-resources-loader": "1.3.2",
"semver": "5.3.0",
"shelljs": "0.7.6",
"style-loader": "0.19.1",
"stylus": "0.54.5",
"stylus-loader": "3.0.1",
"url-loader": "0.5.8",
"vue-loader": "13.7.2",
"vue-style-loader": "3.0.3",
"vue-template-compiler": "2.5.13",
"webpack": "3.11.0",
"webpack-bundle-analyzer": "2.10.1",
"webpack-dev-middleware": "2.0.6",
"webpack-dev-server": "2.11.1",
"webpack-hot-middleware": "2.21.0",
"webpack-merge": "4.1.2",
"webpack-uglify-parallel": "0.1.4"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 9"
]
}