-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
98 lines (98 loc) · 3.3 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
{
"name": "vue-vuex",
"version": "0.2.0",
"description": "Vue Vuex Demo",
"main": "src/index.js",
"scripts": {
"clean": "rm -rf .dist",
"copy": "gulp --gulpfile build/gulp/index.js",
"mkdir": "gulp --gulpfile build/gulp/index.js mkdir",
"compile": "export NODE_ENV=production && npm run copy && webpack --progress --colors",
"test": "webpack --progress --colors --watch --display-chunks --display-error-details",
"dev": "npm-run-all --parallel dev:webpack dev:server ",
"dev:webpack": "npm run mkdir && npm run copy && node build/webpack/devServer.js",
"dev:server": "npm run nodemon",
"nodemon": "nodemon --harmony --watch server server/index.js",
"env": "source .",
"start:test": "pm2 startOrReload ./config/test.json --env test",
"start:prod": "pm2 startOrReload ./config/production.json --env production",
"setup:test": "pm2 deploy ./config/config.json test setup",
"setup:prod": "pm2 deploy ./config/config.json production setup",
"deploy": "npm run deploy:test && npm run deploy:prod",
"deploy:test": "pm2 deploy ./config/config.json test update",
"deploy:prod": "pm2 deploy ./config/config.json production update",
"revert": "pm2 deploy ./config/config.json test revert",
"list": "pm2 deploy ./config/config.json test list"
},
"directories": {
"src": "src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okoala/vue-vuex.git"
},
"author": "Koala Huang <dapixp@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/okoala/vue-vuex/issues"
},
"homepage": "https://github.com/okoala/vue-vuex#readme",
"dependencies": {
"body-parser": "^1.15.0",
"compression": "^1.6.1",
"errorhandler": "^1.4.3",
"es6-promise": "^3.1.2",
"express": "^4.13.4",
"express-session": "^1.13.0",
"http-proxy": "^1.13.2",
"keymirror": "^0.1.1",
"lusca": "^1.3.0",
"serve-favicon": "^2.3.0",
"swig": "^1.4.2",
"todomvc-app-css": "^2.0.4",
"vue": "^1.0.17",
"vue-resource": "^0.7.0",
"vue-router": "^0.7.11",
"vuex": "^0.6.1",
"yargs": "^4.2.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel": "^6.5.2",
"babel-core": "^6.6.5",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.3.13",
"babel-register": "^6.6.5",
"babel-runtime": "^6.6.1",
"css-loader": "^0.23.1",
"eslint": "^2.3.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"gulp": "^3.9.1",
"html-webpack-plugin": "^2.9.0",
"image-webpack-loader": "^1.6.3",
"less": "^2.6.1",
"less-loader": "^2.2.2",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"node-sass": "^3.4.2",
"npm-run-all": "^3.1.0",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"swig-webpack-plugin": "^0.5.1",
"url-loader": "^0.5.7",
"vue-hot-reload-api": "^1.3.2",
"vue-loader": "^8.2.0",
"vue-style-loader": "^1.0.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-sources": "^0.1.1"
}
}