-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
82 lines (82 loc) · 2.3 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --modern",
"test": "vue-cli-service test:unit",
"test:watch": "vue-cli-service test:unit --watch",
"lint": "vue-cli-service lint",
"typecheck": "vue-cli-service build --mode=development"
},
"dependencies": {
"@disfactory/exif-js": "^2.3.0",
"@vue/composition-api": "^0.3.2",
"axios": "^0.19.0",
"copy-to-clipboard": "^3.3.1",
"core-js": "^3.4.2",
"lodash.debounce": "^4.0.8",
"register-service-worker": "^1.6.2",
"vue": "2.7.16",
"vue-carousel": "^0.18.0",
"vue-cool-lightbox": "^2.7.0",
"vue-gtag": "1.16.1",
"vuetify": "^2.3.17"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/vue": "5.9.0",
"@types/jest": "27.5.2",
"@types/lodash.debounce": "^4.0.6",
"@types/ol": "^6.4.2",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vue/cli-plugin-babel": "5.0.8",
"@vue/cli-plugin-eslint": "5.0.8",
"@vue/cli-plugin-pwa": "5.0.8",
"@vue/cli-plugin-typescript": "5.0.8",
"@vue/cli-plugin-unit-jest": "5.0.8",
"@vue/cli-service": "5.0.8",
"@vue/eslint-config-standard": "8.0.1",
"@vue/eslint-config-typescript": "11.0.0",
"@vue/vue2-jest": "27.0.0",
"babel-eslint": "^10.0.1",
"eslint": "8.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest-dom": "^3.6.4",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-testing-library": "6.3.0",
"eslint-plugin-vue": "9.2.0",
"lint-staged": "^9.4.3",
"ol": "^6.5.0",
"ol-mapbox-style": "^6.3.1",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"ts-jest": "27.1.5",
"typescript": "4.9.5",
"vue-cli-plugin-vuetify": "2.5.8",
"vue-svg-loader": "0.16.0",
"vue-template-compiler": "2.7.16",
"vuetify-loader": "1.9.2"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
],
"*.{js,vue,ts}": [
"vue-cli-service lint",
"git add"
]
}
}