forked from Z3r0J/nodejs-clean-architecture
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 751 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 751 Bytes
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
{
"name": "nodejs-clean-architecture",
"version": "0.0.1",
"description": "Made with ❤️ by @Z3R0J",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.20",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"body-parser": "1.20.2",
"class-validator": "^0.14.1",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"mysql": "^2.18.1",
"reflect-metadata": "^0.2.1",
"typeorm": "^0.3.20"
},
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"typeorm": "typeorm-ts-node-commonjs"
}
}