-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
{
"name": "vue-tornado-dev-boilerplate",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"dependencies": {
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"concurrently": "^3.5.0",
"css-loader": "^0.28.4",
"eslint": "^4.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jade": "^1.11.0",
"superagent": "^3.5.2",
"superagent-bluebird-promise": "^4.2.0",
"vue": "^2.3.4",
"vue-html-loader": "^1.2.4",
"vue-loader": "^13.0.0",
"vue-router": "^2.7.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.3.4",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack -p",
"server": "python src/server/run.py",
"dev-server": "python src/server/run.py dev",
"dev-front": "webpack-dev-server -d --hot --config webpack.config.js",
"dev": "concurrently --kill-others \"npm run dev-front\" \"npm run dev-server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/shinux/vue-tornado-boilerplate.git"
},
"author": "shinux",
"license": "ISC",
"bugs": {
"url": "https://github.com/shinux/vue-tornado-boilerplate/issues"
},
"homepage": "https://github.com/shinux/vue-tornado-boilerplate#readme"
}