-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 883 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
{
"scripts": {
"start": "ts-node dist/server.js",
"build": "tsc -p .",
"dev": "ts-node-dev ./src/server.ts",
"migration:make": "knex --knexfile ./src/framework/database/config/connection.ts migrate:make",
"migration:run": "NODE_ENV=development knex --knexfile ./src/framework/database/config/connection.ts migrate:latest",
"test": "jest"
},
"devDependencies": {
"@swc/core": "^1.2.224",
"@swc/jest": "^0.2.22",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/knex": "^0.16.1",
"@types/node": "^18.6.5",
"@types/uuid": "^8.3.4",
"jest": "^28.1.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"knex": "^2.2.0",
"mysql2": "^2.3.3",
"uuid": "^8.3.2"
}
}