-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 876 Bytes
/
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
{
"name": "leetcode",
"version": "1.0.0",
"description": "leetcode 刷题之旅",
"main": "index.js",
"scripts": {
"test": "node ./leetcode",
"script": "node scripts/index.mjs",
"prepare": "husky install",
"update:md": "node scripts/index.mjs u",
"gen:t": "node scripts/index.mjs g -T"
},
"keywords": [
"leetcode",
"javascript"
],
"author": "LiHowe",
"repository": {
"type": "git",
"url": "https://github.com/LiHowe/leetcode.git"
},
"license": "ISC",
"dependencies": {
"axios": "^0.24.0",
"chalk": "^5.0.0",
"commander": "^8.3.0",
"fs-extra": "^10.0.0",
"graphql": "^16.2.0",
"log-symbols": "^5.1.0",
"ora": "^6.0.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.9",
"dayjs": "^1.10.7",
"husky": "^7.0.4"
}
}