-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.47 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
{
"name": "docker-node-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon -L src/index.ts",
"dev:debug": "nodemon --inspect src/index.ts",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"lint:fix": "eslint --fix",
"start:prod": "node dist/index.js",
"build": "tsc -p .",
"docs:generate": "apidoc -i src/ -o docs/api/"
},
"author": "Mohamed Aymen Ourabi",
"license": "ISC",
"dependencies": {
"@types/bcrypt-nodejs": "0.0.31",
"@types/cors": "^2.8.6",
"@types/passport": "^1.0.2",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pg": "^8.1.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.24"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.7",
"@types/node": "^13.5.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}