-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "zyq-docs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test": "jest --watch",
"start": "nodemon ./code/algorithm/promise.ts",
"prepare": "husky install",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.2",
"@vuepress/client": "2.0.0-beta.61",
"@vuepress/plugin-search": "2.0.0-beta.61",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.3",
"lodash": "^4.17.21",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"vue": "^3.2.47",
"vuepress": "2.0.0-beta.61"
},
"dependencies": {
"axios": "^1.4.0",
"ts-node": "^10.9.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint .commitlintrc.js -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,md,tsx,jsx,css,less,scss,html,json}": "prettier --write"
}
}