-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.1 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
{
"name": "vue2-starter",
"version": "1.1.0",
"description": "Vue2, Vuex, Vue-Router, Webpack 2, PostCss",
"main": "index.js",
"scripts": {
"dev": "better-npm-run dev",
"watch": "better-npm-run watch",
"build": "better-npm-run build",
"e2e": "better-npm-run e2e",
"unit": "better-npm-run unit",
"unit:watch": "better-npm-run unit:watch"
},
"betterScripts": {
"dev": {
"command": "webpack-dev-server --config ./webpack/webpack.development.js",
"env": {
"NODE_ENV": "watch"
}
},
"watch": {
"command": "webpack --config ./webpack/webpack.development.js",
"env": {
"NODE_ENV": "watch"
}
},
"build": {
"command": "webpack --config ./webpack/webpack.production.js",
"env": {
"NODE_ENV": "production"
}
},
"e2e": {
"command": "testcafe firefox test/e2e/specs/ --app \"npm run dev\" --app-init-delay 20000 -S -s test/e2e/screenshots"
},
"unit": {
"command": "karma start ./test/unit/karma.conf.js --single-run --quiet; exit 0",
"env": {
"NODE_ENV": "test"
}
},
"unit:watch": {
"command": "karma start ./test/unit/karma.conf.js",
"env": {
"NODE_ENV": "test"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kdmatrosov/vue2-starter.git"
},
"keywords": [
"javascript",
"vue"
],
"author": "Kirill Matrosov",
"license": "ISC",
"bugs": {
"url": "https://github.com/kdmatrosov/vue2-starter/issues"
},
"homepage": "https://github.com/kdmatrosov/vue2-starter#readme",
"dependencies": {
"axios": "^0.16.1",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"vue": "^2.4.2",
"vue-router": "^2.3.0",
"vuex": "^2.2.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^6.4.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.26.0",
"better-npm-run": "0.0.14",
"css-loader": "^0.27.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.30.1",
"istanbul": "^0.4.5",
"jasmine-core": "^2.99.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.30",
"karma-webpack": "^2.0.13",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"path": "^0.12.7",
"phantomjs-prebuilt": "^2.1.16",
"postcss-calc": "^6.0.1",
"postcss-cssnext": "^2.10.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"precss": "^1.4.0",
"style-loader": "^0.16.1",
"testcafe": "^0.16.2",
"url-loader": "^0.5.8",
"vue-loader": "^11.1.4",
"vue-style-loader": "^2.0.4",
"vue-template-compiler": "^2.5.13",
"webpack": "^2.2.1",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dev-server": "^2.11.2"
}
}