-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
134 lines (134 loc) · 3.69 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "curriculum-board-frontend",
"version": "1.0.2",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"serve-vite": "vite",
"staging-vite": "vite --mode staging",
"build-vite": "vite build",
"preview-vite": "vite preview"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-regular-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/vue-fontawesome": "^2.0.6",
"@toast-ui/editor": "^3.1.7",
"axios": "^0.26.1",
"canvas": "^2.9.1",
"chinese-tokenizer": "dest1n1s/chinese-tokenizer",
"core-js": "^3.8.3",
"crypto-js": "^4.1.1",
"dexie": "^3.2.2",
"gsap": "^3.10.2",
"js-cookie": "^3.0.1",
"lodash-es": "^4.17.21",
"lokijs": "^1.5.12",
"lz-string": "^1.4.4",
"mockjs": "^1.1.0",
"pinyin-pro": "^3.8.3",
"vue": "^2.6.14",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.5.1",
"vue-virtual-scroller": "^1.0.10",
"vuetify": "^2.6.0",
"vuex": "^3.6.2",
"webfontloader": "^1.6.28",
"webpack": "^5.70.0"
},
"devDependencies": {
"@originjs/vite-plugin-commonjs": "^1.0.1",
"@types/js-cookie": "^3.0.2",
"@types/lodash-es": "^4.17.6",
"@types/mockjs": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-babel": "^5.0.1",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-plugin-vuex": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.0.3",
"prettier": "^2.4.1",
"rollup-plugin-node-builtins": "^2.1.2",
"sass": "~1.32.0",
"sass-loader": "^10.0.0",
"typescript": "~4.6.4",
"unplugin-vue-components": "^0.19.3",
"vite": "^2.7.2",
"vite-plugin-env-compatible": "^1.1.1",
"vite-plugin-html": "2.1.1",
"vite-plugin-vue2": "^1.9.0",
"vue-cli-plugin-vuetify": "~2.4.7",
"vue-cli-plugin-webfontloader": "~0.1.1",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/typescript/recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": [
"warn",
{
"allow": [
"asyncMethods",
"methods",
"arrowFunctions"
]
}
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"vars": "local",
"argsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^ignore",
"varsIgnorePattern": "[iI]gnored"
}
],
"@typescript-eslint/no-non-null-assertion": "off",
"linebreak-style": "off",
"vue/no-mutating-props": "off",
"prettier/prettier": [
"warn",
{
"#": "prettier config in here :)",
"singleQuote": true,
"endOfLine": "auto",
"semi": false,
"trailingComma": "none",
"printWidth": 180,
"singleAttributePerLine": true
}
]
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}