-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.67 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.67 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "build-week",
"version": "0.0.1",
"description": "Boilerplate for build week",
"author": "wSedlacek",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "node ./dist/main.js",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@nestjs/common": "^6.10.1",
"@nestjs/core": "^6.10.1",
"@nestjs/passport": "^6.1.0",
"@nestjs/platform-express": "^6.10.1",
"bcrypt": "^3.0.6",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"compression": "^1.7.4",
"connect-pg-simple": "^6.0.1",
"dotenv": "^8.2.0",
"express-session": "^1.17.0",
"graphql": "^14.5.8",
"graphql-request": "^1.8.2",
"helmet": "^3.21.2",
"identity-tag": "^1.0.3",
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"pg": "^7.12.1",
"prisma-client-lib": "^1.34.10",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rxjs": "^6.5.3"
},
"devDependencies": {
"@nestjs/cli": "^6.12.1",
"@nestjs/schematics": "^6.7.2",
"@nestjs/testing": "^6.10.1",
"@types/bcrypt": "^3.0.0",
"@types/compression": "^1.0.1",
"@types/connect-pg-simple": "^4.2.0",
"@types/express": "^4.17.1",
"@types/express-session": "^1.15.15",
"@types/helmet": "^0.0.45",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/passport": "^1.0.1",
"@types/passport-github2": "^1.2.4",
"@types/supertest": "^2.0.8",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.7.2"
},
"jest": {
"moduleNameMapper": {
"^@prisma": "<rootDir>/../prisma/generated",
"^@env": "<rootDir>/../environment"
},
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"moduleDirectories": [
"node_modules",
"src/app"
],
"rootDir": "src/app/",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}