-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
40
41
42
43
{
"name": "express-typescript",
"version": "1.0.0",
"description": "Typescript with express tutorial",
"main": "app.ts",
"private": false,
"scripts": {
"start:master": "node ./dist/index.js",
"start": "nodemon",
"build": "tsc",
"db": "rm -rf ./src/entities & npx typeorm-model-generator -h 192.168.43.196 -d gamedb -p 3306 -u kitty -x pink -e mysql -o ./src/entities --noConfig true --ce pascal --cp camel"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"extract-zip": "^2.0.1",
"fs-extra": "^9.0.1",
"http-status-codes": "^1.4.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.0",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4",
"typeorm": "^0.2.25",
"typeorm-model-generator": "^0.4.2",
"unzipper": "^0.10.11",
"ws": "^7.3.1"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/node": "^13.13.15",
"@types/ws": "^7.2.6",
"nodemon": "^2.0.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}