-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
37 lines (37 loc) · 1.09 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
{
"private": true,
"name": "typera",
"workspaces": [
"packages/typera-common",
"packages/typera-express",
"packages/typera-koa",
"typing-tests"
],
"scripts": {
"build": "tsc --build",
"watch": "yarn build --watch",
"clean": "yarn build --clean",
"test": "yarn build && jest && yarn workspace typing-tests test",
"lint": "eslint --max-warnings 0 '**/*.ts' && prettier --check \"**/*.{json,md}\"",
"lint:fix": "eslint --fix '**/*.ts' && prettier --write '**/*.{json,md}'",
"doctoc": "doctoc README.md --title '## Table of Contents' && prettier --write README.md"
},
"devDependencies": {
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"concurrently": "^8.0.1",
"doctoc": "^2.0.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"lerna": "^7.0.0",
"prettier": "^3.0.1",
"supertest": "^6.0.1",
"ts-node": "^10.0.0",
"typescript": "^5.0.2"
},
"resolutions": {
"doctoc/**/trim": "0.0.3"
}
}