-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.5 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
83
84
85
86
87
88
89
90
91
{
"name": "pyshare-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"clean": "rimraf ./node_modules/.vite",
"build": "vite build",
"build:clean": "rimraf dist",
"lint": "eslint . --ext js,ts,htm,html,vue --fix",
"test:unit": "jest",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@mdi/font": "^6.5.95",
"@vue/composition-api": "^1.2.4",
"axios": "^0.21.4",
"dayjs": "^1.9.6",
"echarts": "^5.2.2",
"lodash.clonedeep": "^4.5.0",
"miragejs": "^0.1.41",
"papaparse": "^5.3.1",
"roboto-fontface": "*",
"swrv": "^0.9.4",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6",
"vue-codemirror": "^4.0.6",
"vue-cookie": "^1.1.4",
"vue-easy-lightbox": "^0.17.0",
"vue-echarts": "^6.0.2",
"vue-notification": "^1.3.20",
"vue-property-decorator": "^9.1.2",
"vue-rollbar": "^1.0.0",
"vue-router": "^3.5.3",
"vue2-editor": "^2.10.2",
"vuetify": "^2.6.2",
"vuex": "^3.6.2",
"vuex-persist": "^3.1.3"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/vue2-editor": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vue/compiler-sfc": "^3.2.27",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^1.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.4.6",
"eslint": "^8.7.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-vue": "^8.3.0",
"eslint-plugin-vuejs-accessibility": "^1.1.1",
"eslint-plugin-vuetify": "^1.1.0",
"eslint-plugin-yaml": "^0.5.0",
"flush-promises": "^1.0.2",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.7",
"postcss-html": "^1.3.0",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"sass": "1.32.12",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4",
"unplugin-vue-components": "^0.17.13",
"vite": "^2.7.12",
"vite-plugin-env-compatible": "^1.1.1",
"vite-plugin-eslint": "^1.3.0",
"vite-plugin-vue2": "^1.9.2",
"vue-eslint-parser": "^8.0.1",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.14",
"vue-tsc": "^0.30.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{vue,htm,html,js,ts,json,yml,yaml}": [
"eslint --fix"
]
}
}