-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
{
"name": "inoutfin-web",
"version": "0.1.0",
"private": true,
"engines": {
"node": "16.x",
"npm": "8.1.0"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"start": "node server.js"
},
"dependencies": {
"@meforma/vue-toaster": "1.3.0",
"@popperjs/core": "2.11.5",
"bootstrap": "5.1.3",
"bootstrap-icons-vue": "1.8.1",
"chart.js": "3.7.1",
"core-js": "3.21.1",
"express": "4.17.3",
"firebase": "9.8.4",
"graphql": "16.3.0",
"graphql-request": "4.2.0",
"register-service-worker": "1.7.2",
"sass-loader": "12.1.0",
"serve-static": "1.15.0",
"v-tooltip": "4.0.0-beta.17",
"vee-validate": "4.5.10",
"vue": "3.2.37",
"vue-next-select": "2.10.4",
"vue-router": "4.0.14",
"vuex": "4.0.2",
"yup": "1.0.0-beta.3"
},
"devDependencies": {
"@babel/eslint-parser": "7.17.0",
"@vue/cli-plugin-babel": "5.0.6",
"@vue/cli-plugin-eslint": "5.0.6",
"@vue/cli-plugin-pwa": "5.0.6",
"@vue/cli-plugin-router": "5.0.6",
"@vue/cli-plugin-vuex": "5.0.6",
"@vue/cli-service": "5.0.6",
"@vue/compiler-sfc": "3.2.37",
"@vue/eslint-config-standard": "6.1.0",
"eslint": "8.13.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-standard": "4.1.0",
"eslint-plugin-vue": "7.20.0",
"lint-staged": "12.5.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}