-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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
44
45
46
{
"name": "app-server-nodejs",
"version": "1.0.0",
"description": "App server with typescript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node dist/server.js",
"start:dev": "tsc && concurrently \"tsc -w\" \"nodemon dist/server.js\"",
"start:prod": "SET NODE_ENV=production && npm start",
"typeorm": "typeorm-ts-node-esm -d ./src/config/data.source.ts",
"m:gen": "npm run typeorm migration:generate",
"m:run": "npm run typeorm migration:run"
},
"author": "byZhetta",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.6",
"typeorm-naming-strategies": "^4.1.0",
"typescript": "^4.6.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/passport-jwt": "^3.0.8",
"@types/passport-local": "^1.0.35",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.2"
}
}