-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 835 Bytes
/
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
{
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.36",
"@swc/jest": "^0.2.24",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/jstoxml": "^2.0.2",
"@types/supertest": "^2.0.12",
"jest": "^29.4.3",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.5"
},
"scripts": {
"test": "npm run tsc -- --noEmit && jest",
"tsc": "tsc",
"dev": "nodemon src/infrastructure/api/server.ts"
},
"dependencies": {
"@types/uuid": "^9.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jstoxml": "^3.2.6",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.29.0",
"sequelize-typescript": "^2.1.5",
"sqlite3": "^5.1.4",
"uuid": "^9.0.0",
"yup": "^1.1.1"
}
}