-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.98 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
{
"name": "covirondelle-frontend",
"version": "3.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --port 5000",
"build": "vue-cli-service build",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"storybook": "start-storybook -p 9001 -c .storybook -s public"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/vue-fontawesome": "^2.0.2",
"core-js": "^3.10.0",
"socket.io-client": "^4.0.1",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-i18n": "^8.24.2",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.5.1",
"vue-socket.io-extended": "^4.1.0",
"vuetify": "^2.4.9",
"vuex": "^3.6.2"
},
"devDependencies": {
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@storybook/addon-controls": "6.2.3",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/vue": "^6.2.2",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "^4.5.12",
"@vue/cli-plugin-eslint": "^4.5.12",
"@vue/cli-plugin-typescript": "^4.5.12",
"@vue/cli-plugin-unit-jest": "^4.5.12",
"@vue/cli-service": "^4.5.12",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.0.3",
"deepmerge": "^4.2.2",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.8.0",
"lint-staged": "^10.5.4",
"node-factory": "^0.4.1",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"sass-loader": "^11.0.0",
"typescript": "4.2.3",
"vue-jest": "^5.0.0-0",
"vue-template-compiler": "^2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx,json,css}": [
"prettier --write",
"vue-cli-service lint --fix",
"git add"
]
}
}