-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 KB
/
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
37
38
39
{
"name": "eventrid-backend",
"version": "1.0.0",
"description": "eventrid-backend",
"type": "commonjs",
"scripts": {
"start": "ts-node src/index.ts",
"start:dev": "nodemon --watch 'src/**/*' -e ts,tsx --exec 'ts-node' src/index.ts",
"seed": "ts-node src/core/seeders/general.seeder.ts"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.17.2",
"express-promise-router": "^4.1.1",
"http-status": "^1.7.3",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mysql": "npm:mysql2@^3.6.5",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"typeorm": "0.3.17"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^16.18.67",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"nodemon": "^3.0.2",
"ts-node": "10.7.0",
"typescript": "4.5.2"
}
}