-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 888 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 888 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
{
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mysql": "^2.18.1",
"typeorm": "^0.3.11",
"ws": "^8.9.0"
},
"name": "server",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"prestart": "tsc",
"pretest": "tsc",
"predev": "tsc",
"build": "nodemon --watch src/**/*.ts --exec ts-node src/app.ts",
"dev": "nodemon --watch src --delay 1 --exec ts-node src/app.ts",
"start": "nodemon --watch src --delay 1 --exec ts-node src/app.ts",
"schema:drop": "ts-node ./node_modules/typeorm/cli.js schema:drop -d src/ormconfig.ts",
"schema:sync": "ts-node ./node_modules/typeorm/cli.js schema:sync -d src/ormconfig.ts"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/ws": "^8.5.3",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1"
}
}