-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 835 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 835 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
30
31
32
{
"name": "app",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@awaitjs/express": "^0.9.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"md5-typescript": "^1.0.5",
"mysql2": "^2.3.3",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.8.1",
"typeorm": "^0.3.7"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.6.0",
"concurrently": "^7.2.2",
"nodemon": "^2.0.18",
"typescript": "^4.7.4"
}
}