-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 799 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 799 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
{
"devDependencies": {
"@swc/cli": "^0.7.5",
"@swc/core": "^1.11.24",
"@swc/jest": "^0.2.38",
"@types/express": "^5.0.2",
"@types/jest": "^29.5.14",
"@types/jstoxml": "^2.0.2",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"jest": "^29.7.0",
"supertest": "^7.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"scripts": {
"test": "npm run tsc -- --noEmit && jest",
"tsc": "tsc",
"dev": "nodemon src/infra/api/server.ts"
},
"dependencies": {
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jstoxml": "3.2.3",
"nodemon": "^3.1.10",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.7",
"sequelize-typescript": "^2.1.6",
"sqlite3": "^5.1.7",
"uuid": "^11.1.0",
"yup": "^1.6.1"
}
}