-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 839 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 839 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
{
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.2.174",
"@swc/jest": "^0.2.21",
"@types/jest": "^29.0.0",
"@types/jstoxml": "^2.0.3",
"@types/supertest": "^2.0.12",
"jest": "^29.0.0",
"supertest": "^6.3.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.8.3"
},
"scripts": {
"test": "npm run tsc -- --noEmit && jest",
"tsc": "tsc",
"dev": "nodemon src/infrastructure/api/server.ts"
},
"dependencies": {
"@types/express": "^4.17.15",
"@types/uuid": "^8.3.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jstoxml": "^3.2.3",
"nodemon": "^2.0.19",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.25.0",
"sequelize-typescript": "^2.1.3",
"sqlite3": "^5.0.13",
"uuid": "^8.3.2",
"yup": "^0.32.11"
}
}