-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.84 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
{
"name": "stuck",
"version": "0.1.0",
"description": "A vue2 demo-project displaying recently played spotify tracks",
"main": "client/index.js",
"scripts": {
"precommit": "lint-staged",
"test": "testcafe all test/e2e/index.js --app \"npm run dev\" --app-init-delay 10000",
"build": "webpack --config build/webpack.prod.js",
"dev": "node build/server.js",
"lint": "xo **/client/**/*.{vue,js} !node_modules/**",
"api": "nodemon --watch api --exec dyson api 4444",
"svg": "vsvg -s ./static/icons -t ./client/components/icons --tpl ./build/svg-icon-template",
"format": "prettier --write --no-semi --single-quote --trailing-comma es5 'client/**/*.js'"
},
"lint-staged": {
"*.js": [
"prettier --write --no-semi --single-quote --trailing-comma es5",
"npm run lint",
"git add"
]
},
"author": "Jan Florian Dietrich <jfd@daenen4.de>",
"license": "MIT",
"xo": {
"extends": "./.eslintrc",
"esnext": true,
"envs": [
"browser"
]
},
"dependencies": {
"babel-runtime": "^6.18.0",
"js-cookie": "^2.1.4",
"moment": "^2.18.1",
"promise-polyfill": "^6.0.2",
"raven-js": "^3.17.0",
"uuid": "^3.1.0",
"vue": "^2.2.0",
"vue-progressive-image": "^2.1.5",
"vue-router": "^2.0.0",
"vuex": "^2.0.0",
"vuex-persistedstate": "^2.0.0",
"vuex-router-sync": "^4.0.0",
"what-input": "^4.1.3"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"axios": "^0.16.1",
"babel-core": "^6.16.0",
"babel-loader": "^6.2.4",
"babel-preset-vue-app": "^1.1.1",
"chalk": "^1.1.3",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"cz-conventional-changelog": "^2.0.0",
"dyson": "^1.2.4",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.1.0",
"eslint-config-vue": "latest",
"eslint-plugin-prettier": "^2.1.0",
"eslint-plugin-testcafe": "^0.2.0",
"eslint-plugin-vue": "latest",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.9.0",
"friendly-errors-webpack-plugin": "^1.1.2",
"html-webpack-plugin": "^2.22.0",
"husky": "^0.13.3",
"lint-staged": "^3.4.2",
"nodemon": "^1.12.1",
"offline-plugin": "^4.5.3",
"postcss-custom-media": "^6.0.0",
"postcss-loader": "^0.9.1",
"postcss-nested": "^1.0.0",
"postcss-utilities": "^0.7.0",
"prettier": "^1.3.1",
"query-string": "^4.3.4",
"raw-loader": "^0.5.1",
"style-loader": "^0.13.1",
"testcafe": "^0.12.1",
"vue-loader": "^13.0.0",
"vue-svgicon": "^1.1.8",
"vue-template-compiler": "^2.2.0",
"webpack": "2.2.0",
"webpack-dev-middleware": "^1.8.1",
"webpack-hot-middleware": "^2.12.2",
"xo": "^0.18.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}