-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
97 lines (97 loc) · 2.92 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
{
"name": "nice-leetcode",
"version": "1.0.0",
"description": "",
"packageManager": "[email protected]",
"scripts": {
"preinstall": "node bin/preinstall.mjs",
"prepare": "husky install",
"docs:dev": "vite --open",
"docs:build": "vue-tsc --noEmit && vite build",
"postdocs:build": "eslint components.d.ts auto-imports.d.ts --fix && git add components.d.ts auto-imports.d.ts",
"docs:preview": "vite preview",
"style:prettier": "prettier --write .",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"lint:style": "stylelint src/**/*.{css,scss,sass,vue} --fix",
"ac_record": "tsc scripts/ac_record.ts && node scripts/ac_record.js",
"week_rollup": "tsc scripts/week_rollup.ts && node scripts/week_rollup.js",
"add_user": "tsc scripts/add_user.ts && node scripts/add_user.js",
"get_all_questions": "tsc scripts/get_all_questions.ts && node scripts/get_all_questions.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/dom-to-image": "^2.6.4",
"@types/markdown-it": "^12.2.3",
"@vueuse/core": "^8.7.5",
"async": "^3.2.3",
"axios": "^0.27.2",
"clipboard": "^2.0.11",
"dayjs": "^1.11.1",
"dom-to-image": "^2.6.0",
"dotenv": "^16.0.0",
"element-plus": "^2.2.6",
"highcharts": "^10.2.0",
"highcharts-vue": "^1.4.0",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"typescript": "^4.6.4",
"vue": "^3.2.37",
"vue-router": "4"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@rushstack/eslint-patch": "^1.1.3",
"@types/async": "^3.2.13",
"@types/node": "^17.0.31",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.18.0",
"eslint-define-config": "^1.5.1",
"eslint-plugin-vue": "^9.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"postcss-html": "^1.4.1",
"prettier": "^2.7.1",
"sass": "^1.53.0",
"stylelint": "^14.9.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-property-sort-order-smacss": "^9.0.0",
"stylelint-config-standard-scss": "^4.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"unplugin-auto-import": "^0.9.0",
"unplugin-vue-components": "^0.19.9",
"vite": "^2.9.12",
"vite-plugin-inspect": "^0.6.0",
"vue-tsc": "^0.38.1"
},
"lint-staged": {
"!(docs/**/*).js": [
"prettier --write"
],
"bin/*.(c|m)?js": [
"eslint --fix",
"prettier --write"
],
".eslintrc-auto-import.json": [
"prettier --write"
],
"*.vue": [
"eslint --fix",
"stylelint --fix",
"prettier --write"
],
"*.ts?(x)": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"engines": {
"node": ">=16.x",
"yarn": ">=1.x"
}
}