forked from ForestAdmin/agent-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.65 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
{
"name": "root",
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"fishery": "^2.2.2",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-extended": "^3.2.3",
"lerna": "^6.4.1",
"markdown-link-check": "^3.10.3",
"multi-semantic-release": "^3.0.1",
"nock": "^13.3.0",
"prettier": "^2.8.2",
"prettier-eslint": "^15.0.1",
"semantic-release-slack-bot": "^3.5.3",
"ts-jest": "^29.0.4",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typedoc-plugin-resolve-crossmodule-references": "^0.3.3",
"typescript": "^4.9.4"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build:watch": "lerna run --parallel --no-bail --no-prefix build:watch",
"build": "lerna run build",
"clean": "lerna run clean && rm -rf coverage api-reference/",
"docs": "typedoc",
"lint": "lerna exec --parallel eslint src test",
"lint:fix": "lerna exec eslint src test -- --fix",
"prepare": "husky install",
"test": "jest",
"test:coverage": "yarn test --coverage"
},
"workspaces": [
"packages/*",
"!packages/_example/*"
]
}