-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 795 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 795 Bytes
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
{
"name": "api-test",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"test": "jest",
"check:ts": "tsc --noEmit",
"build": "tsc -b",
"dev": "tsx watch src/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@types/express": "^4.17.14",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"mocha": "^10.2.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"tsx": "^3.12.2",
"typescript": "^4.9.5"
},
"dependencies": {
"body-parser": "^1.20.1",
"express": "^4.18.2",
"node-fetch": "^3.3.1"
}
}