forked from Disfactory/frontend
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 2.16 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
{
"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",
"register-service-worker": "^1.6.2",
"vue": "^2.6.10",
"vue-carousel": "^0.18.0",
"vue-cool-lightbox": "^2.7.0",
"vue-gtag": "^1.1.1",
"vuetify": "^2.3.17"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/vue": "^5.6.1",
"@types/jest": "^24.9.1",
"@types/ol": "^6.4.2",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^3.10.1",
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-eslint": "^4.0.5",
"@vue/cli-plugin-pwa": "^4.2.2",
"@vue/cli-plugin-typescript": "^4.0.5",
"@vue/cli-plugin-unit-jest": "^4.5.9",
"@vue/cli-service": "^4.0.5",
"@vue/eslint-config-standard": "^5.0.0",
"@vue/eslint-config-typescript": "^5.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^6.7.0",
"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": "^3.10.1",
"eslint-plugin-vue": "^6.0.1",
"lint-staged": "^9.4.3",
"ol": "^6.5.0",
"ol-mapbox-style": "^6.3.1",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"typescript": "^3.9.7",
"vue-cli-plugin-vuetify": "~2.0.6",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.3.0"
},
"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"
]
}
}