-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "myelin-client",
"version": "0.5.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test": "npm run lint && npm run test:unit",
"test:unit": "vue-cli-service test:unit",
"build:report": "vue-cli-service build --report"
},
"dependencies": {
"ansi_up": "^3.0.0",
"awesomplete": "^1.1.3",
"howler": "^2.0.15",
"humanize-duration-es6": "^1.0.1",
"infinite-autocomplete": "^3.2.1",
"lodash": "^4.17.11",
"lodash-es": "^4.17.11",
"tab-completion": "^1.0.1",
"vue": "^2.5.16",
"vue-draggable-resizable": "^1.7.2",
"vue-router": "^3.0.1",
"vue-virtual-scroll-list": "^1.2.5",
"vue2-heropatterns": "^1.0.0"
},
"devDependencies": {
"@gfx/zopfli": "^1.0.9",
"@vue/cli-plugin-babel": "^3.0.0-beta.11",
"@vue/cli-plugin-eslint": "^3.0.0-beta.11",
"@vue/cli-plugin-unit-mocha": "^3.0.0-beta.11",
"@vue/cli-service": "^3.0.0-beta.11",
"@vue/eslint-config-standard": "^3.0.0-beta.11",
"@vue/test-utils": "^1.0.0-beta.16",
"brotli-webpack-plugin": "^1.0.0",
"chai": "^4.1.2",
"compression-webpack-plugin": "^2.0.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"lint-staged": "^6.0.0",
"sinon": "^6.2.0",
"vue-template-compiler": "^2.5.16"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}