-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 949 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
35
36
{
"devDependencies": {
"@swc/cli": "^0.1.55",
"@swc/core": "^1.7.24",
"@swc/jest": "^0.2.36",
"@types/jest": "^27.4.1",
"@types/jstoxml": "^2.0.2",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"jest": "^27.5.1",
"supertest": "^6.2.2",
"ts-node": "^10.6.0",
"typescript": "^5.6.2"
},
"scripts": {
"type-check": "tsc --noEmit",
"test": "jest",
"tsc": "tsc",
"migrate": "node -r ts-node/register/transpile-only ./src/migrations/config/migrator-cli.ts",
"dev": "nodemon src/modules/infrastructure/api/server.ts"
},
"dependencies": {
"@types/express": "^4.17.13",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jstoxml": "^3.2.3",
"nodemon": "^2.0.15",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.17.0",
"sequelize-typescript": "^2.1.3",
"sqlite3": "^5.0.2",
"umzug": "^3.8.1",
"uuid": "^8.3.2",
"yup": "^0.32.11"
}
}