-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"private": true,
"name": "lid",
"workspaces": [
"./packages/*"
],
"description": "Simple, efficient and type-safe http framework",
"author": {
"name": "yinz",
"email": "[email protected]"
},
"engines": {
"node": ">=14"
},
"license": "MIT",
"scripts": {
"dev": "tsc --build ./tsconfig.dist.json --watch",
"build": "tsc --build ./tsconfig.dist.json",
"clean": "tsc --build --clean ./tsconfig.dist.json",
"lint": "eslint ./packages",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prefer-let": "^1.1.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"prettier": "^2.3.0",
"supertest": "^6.1.3",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.3.2"
}
}