-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "root",
"private": true,
"scripts": {
"clean:node_modules": "lerna clean",
"init": "lerna bootstrap",
"test": "lerna run test",
"lint": "eslint src --ext .ts"
},
"author": "Alex.Zhang",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^14.14.22",
"husky": "^4.3.8",
"lerna": "^3.22.1",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"apidoc": "^0.26.0",
"commitlint": "^11.0.0",
"copyfiles": "^2.4.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.7",
"prettier": "2.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}