-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "code-craft-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --ignore dist/ --exec \"tsc && ts-node -r tsconfig-paths/register app/index.ts\"",
"build": "tsc",
"start": "node dist/app/index.js",
"migrate": "tsc && node dist/infrastructure/database/migrations/cli.js",
"test": "jest --silent"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.5.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/mime-types": "^2.1.4",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/ws": "^8.5.10",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-fileupload": "^1.5.0",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"module-alias": "^2.2.3",
"mysql2": "^3.9.1",
"swagger-ui-express": "^5.0.0",
"ws": "^8.16.0"
},
"_moduleAliases": {
"@": "dist/"
}
}