-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
117 lines (117 loc) · 2.9 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
{
"name": "vue-vuex-starter-kit",
"version": "1.0.1",
"keywords": [
"vue",
"vue.js",
"vuex",
"vue-router",
"vuex-cli",
"starter kit"
],
"author": "[email protected]",
"license": "MIT",
"description": "vue, vuex, vue-router",
"main": "index.js",
"engines": {
"node": ">=4.2.0",
"npm": "^3.0.0"
},
"scripts": {
"clean": "rimraf dist",
"compile": "better-npm-run compile",
"lint": "eslint src tests",
"lint:fix": "npm run lint -- --fix",
"start": "better-npm-run start",
"dev": "better-npm-run dev",
"dev:mock": "better-npm-run dev -- --mock",
"dev:no-debug": "npm run dev -- --no_debug",
"test": "better-npm-run test",
"test:dev": "npm run test -- --watch",
"deploy": "better-npm-run deploy",
"deploy:dev": "better-npm-run deploy:dev",
"deploy:prod": "better-npm-run deploy:prod"
},
"betterScripts": {
"compile": {
"command": "./node_modules/.bin/vuex-webpack-compile",
"env": {
"DEBUG": "app:*"
}
},
"dev": {
"command": "nodemon --exec ./node_modules/.bin/vuex-webpack-server",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"deploy": {
"command": "npm run clean && npm run compile",
"env": {
"DEBUG": "app:*"
}
},
"deploy:dev": {
"command": "npm run deploy",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"deploy:prod": {
"command": "npm run deploy",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
},
"start": {
"command": "./node_modules/.bin/vuex-webpack-server",
"env": {
"DEBUG": "app:*"
}
},
"test": {
"command": "babel-node ./node_modules/karma/bin/karma start tests/karma.conf",
"env": {
"NODE_ENV": "test",
"DEBUG": "app:*"
}
}
},
"dependencies": {
"history": "^2.0.0",
"normalizr": "^2.2.1",
"vue": "^2.0.5",
"vue-router": "^2.0.2",
"vuex-actions": "^1.1.1",
"vuex-localstorage": "^0.3.0",
"vuex-promise": "^2.0.0-rc.3",
"vuex-router-sync": "^3.0.0"
},
"devDependencies": {
"better-npm-run": "0.0.9",
"eslint": "^3.10.1",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "^3.3.2",
"nodemon": "^1.10.0",
"query-string": "^4.2.3",
"string-template": "^1.0.0",
"vue-hot-reload-api": "^2.0.6",
"vue-html-loader": "^1.2.3",
"vue-loader": "^8.5.4",
"vue-style-loader": "^1.0.0",
"vuex-cli-webpack": "^2.0.0-beta4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sokis/vue-vuex-starter-kit.git"
},
"bugs": {
"url": "https://github.com/sokis/vue-vuex-starter-kit/issues"
},
"homepage": "https://github.com/sokis/vue-vuex-starter-kit#readme"
}