This repository was archived by the owner on Mar 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.26 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.26 KB
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
{
"name": "sustech_flow_frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --NODE_ENV=development ",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'"
},
"dependencies": {
"@types/js-cookie": "^2.2.5",
"@types/vue-markdown": "^2.2.1",
"apexcharts": "^3.15.6",
"axios": "^0.19.2",
"core-js": "^3.6.4",
"dotenv": "^8.2.0",
"js-cookie": "^2.2.1",
"pug": "^2.0.4",
"pug-plain-loader": "^1.0.0",
"register-service-worker": "^1.6.2",
"vue": "^2.6.11",
"vue-apexcharts": "^1.5.2",
"vue-class-component": "^7.2.2",
"vue-i18n": "^8.0.0",
"vue-markdown": "^2.2.4",
"vue-meta": "^2.3.2",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.5",
"vuetify": "^2.2.0",
"vuex": "^3.1.2"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.12.1",
"@types/dotenv": "^8.2.0",
"@types/jest": "^24.0.19",
"@types/webpack": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-pwa": "~4.2.0",
"@vue/cli-plugin-router": "~4.2.0",
"@vue/cli-plugin-typescript": "~4.2.0",
"@vue/cli-plugin-unit-jest": "~4.2.0",
"@vue/cli-plugin-vuex": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.1",
"@vue/test-utils": "1.0.0-beta.31",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.1.2",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"typescript": "~3.7.5",
"vue-cli-plugin-i18n": "~0.6.1",
"vue-cli-plugin-vuetify": "~2.0.4",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.3.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}