-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.01 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.01 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "backend-typescript-pern-stack",
"version": "1.0.0",
"description": "Backend TypeScript PERN Stack",
"scripts": {
"dev": "nodemon",
"lint": "eslint . --ext .ts",
"migration:create": "NODE_ENV=local npm run typeorm -- migration:create -n",
"setup:local": "NODE_ENV=local npm run typeorm -- migration:run",
"setup:test": "NODE_ENV=test npm run typeorm -- migration:run",
"test": "NODE_ENV=test jest -i",
"test:coverage": "NODE_ENV=test jest --coverage",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"@hapi/joi": "17.1.1",
"bcrypt": "5.0.0",
"compression": "1.7.4",
"cors": "2.8.5",
"dotenv-safe": "8.2.0",
"express": "4.17.1",
"express-joi-validation": "4.0.4-beta.0",
"express-promise-router": "4.0.1",
"helmet": "4.1.0",
"http-status": "1.4.2",
"morgan": "1.10.0",
"passport": "0.4.1",
"passport-jwt": "4.0.0",
"pg": "8.3.3",
"reflect-metadata": "0.1.13",
"typeorm": "0.2.25",
"winston": "3.3.3"
},
"devDependencies": {
"@types/bcrypt": "3.0.0",
"@types/compression": "1.7.0",
"@types/cors": "2.8.7",
"@types/dotenv-safe": "8.1.1",
"@types/express": "4.17.8",
"@types/express-promise-router": "3.0.0",
"@types/faker": "4.1.12",
"@types/hapi__joi": "17.1.4",
"@types/helmet": "0.0.48",
"@types/http-status": "1.1.2",
"@types/jest": "26.0.13",
"@types/logform": "1.10.1",
"@types/morgan": "1.9.1",
"@types/node": "14.6.4",
"@types/passport": "1.0.4",
"@types/passport-jwt": "3.0.3",
"@types/supertest": "2.0.10",
"@types/winston": "2.4.4",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"eslint": "7.8.1",
"faker": "5.1.0",
"jest": "26.4.2",
"logform": "2.2.0",
"nodemon": "2.0.4",
"prettier": "2.1.1",
"supertest": "4.0.2",
"ts-jest": "26.3.0",
"ts-node": "9.0.0",
"tsconfig-paths": "3.9.0",
"typescript": "4.0.2"
}
}