-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.66 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
47
48
49
50
51
52
53
54
55
{
"name": "ts-node-api-oop",
"version": "1.0.0",
"description": "This is an server app with Nodejs Typescript Docker and Orient Object Programming",
"main": "app.js",
"scripts": {
"start": "tsc && node dist/app/app.js",
"start:dev": "tsc && concurrently \"tsc -w\" \"nodemon dist/app/app.js\"",
"start:prod": "SET || export NODE_ENV=production && npm start",
"typeorm": "typeorm-ts-node-esm -d ./config/base_db/data.source.ts",
"m:gen": "npm run typeorm migration:generate",
"m:run": "npm run typeorm migration:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniklean/ts-node-api-oop.git"
},
"keywords": [],
"author": "Ing. Luis Daniel Vieras",
"license": "ISC",
"bugs": {
"url": "https://github.com/daniklean/ts-node-api-oop/issues"
},
"homepage": "https://github.com/daniklean/ts-node-api-oop#readme",
"dependencies": {
"bcrypt": "5.1.0",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"cors": "2.8.5",
"dotenv": "16.0.1",
"express": "4.18.1",
"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.7.3"
},
"devDependencies": {
"@types/bcrypt": "5.0.0",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/jsonwebtoken": "9.0.2",
"@types/morgan": "1.9.3",
"@types/passport-jwt": "3.0.8",
"@types/passport-local": "1.0.35",
"concurrently": "7.2.1",
"nodemon": "2.0.16",
"ts-node": "10.8.1"
}
}