-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.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
{
"name": "smartdok-sunshine-demo",
"version": "0.3.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"deploy": "az storage blob upload-batch --account-name sunshinedemo -s dist -d \\$web",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"async-mutex": "^0.1.3",
"d3": "^5.9.1",
"highlight.js": "^9.14.2",
"locize-editor": "^1.7.0",
"locizer": "^1.3.0",
"luxon": "^1.15.0",
"smartdok-sunshine": "^1.10.1",
"v-tooltip": "2.0.2",
"vee-validate": "^2.1.7",
"vue": "^2.6.6",
"vue-highlight-component": "^1.0.0",
"vue-i18n": "^8.9.0",
"vue-router": "^3.0.1",
"vuex": "^3.1.0"
},
"devDependencies": {
"@types/d3": "^5.7.1",
"@types/dom-inputevent": "^1.0.4",
"@types/jest": "^24.0.6",
"@types/lodash": "^4.14.136",
"@types/luxon": "^1.13.0",
"@vue/cli-plugin-babel": "^3.4.1",
"@vue/cli-plugin-eslint": "^3.5.1",
"@vue/cli-plugin-typescript": "^3.4.1",
"@vue/cli-plugin-unit-jest": "^3.4.1",
"@vue/cli-service": "^3.4.1",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^8.1.4",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3",
"vue-template-compiler": "^2.6.6"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": [
"vue-cli-service lint",
"git add"
]
}
}