-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 959 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 959 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
36
37
38
39
40
41
{
"name": "API REST written with typescript and express",
"version": "1.0.0",
"description": "",
"main": "./src/server.ts",
"scripts": {
"dev": "clear && tsx ./src/server.ts",
"test": "clear && NODE_ENV=test jest --verbose --coverage"
},
"keywords": [
"express",
"typescript",
"typeorm",
"sqlite3",
"jest",
"testing",
"api rest"
],
"author": "Bruno dias Rasquinha",
"license": "ISC",
"dependencies": {
"@types/node": "^18.0.6",
"express": "^4.19.2",
"reflect-metadata": "^0.2.2",
"sqlite3": "^5.1.7",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.20",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"tsx": "^4.16.5",
"typescript": "^5.5.4"
}
}