-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.64 KB
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
{
"name": "root",
"description": "a node package that can use decorator to create HTTP servers",
"version": "0.0.3",
"author": "decorator-server",
"private": true,
"workspaces": [
"packages/*"
],
"license": "MIT",
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"clean": "lerna clean"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"eslint"
]
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/config-lerna-scopes": "^12.1.4",
"@types/jest": "^27.0.2",
"@types/koa": "^2.13.4",
"@types/node": "^16.10.3",
"@types/sequelize": "^4.28.10",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "4.3.8",
"jest": "^27.2.5",
"lerna": "^4.0.0",
"lerna-changelog": "^1.0.1",
"lint-staged": "10.5.4",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}