-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.05 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@mines/nest",
"version": "0.1.0",
"description": "NestJS based API server.",
"author": "Bryan Swift <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bryanjswift/the-mines-challenge/issues"
},
"homepage": "https://github.com/bryanjswift/the-mines-challenge#readme",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "yarn run build && node dist/main",
"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": {
"@nearform/sql": "1.5.0",
"@nestjs/common": "7.6.12",
"@nestjs/core": "7.6.12",
"@nestjs/jwt": "7.2.0",
"@nestjs/passport": "7.1.5",
"@nestjs/platform-express": "7.6.12",
"dotenv": "8.2.0",
"express": "4.17.1",
"fp-ts": "2.9.5",
"io-ts": "2.2.14",
"passport": "0.4.1",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
"pg": "8.5.1",
"pg-pool": "3.2.2",
"reflect-metadata": "0.1.13",
"rxjs": "6.6.3",
"ulid": "2.3.0",
"uuid": "8.3.2"
},
"devDependencies": {
"@nestjs/cli": "7.5.5",
"@nestjs/schematics": "7.2.7",
"@nestjs/testing": "7.6.12",
"@stryker-mutator/core": "4.4.1",
"@stryker-mutator/jest-runner": "4.4.1",
"@types/faker": "5.1.7",
"@types/jest": "26.0.20",
"@types/node": "14.14.31",
"@types/passport-jwt": "3.0.5",
"@types/passport-local": "1.0.33",
"@types/pg": "7.14.10",
"@types/supertest": "2.0.10",
"@types/uuid": "8.3.0",
"faker": "5.4.0",
"jest": "26.6.3",
"supertest": "6.1.3",
"ts-jest": "26.5.1",
"ts-node": "9.1.1",
"tsconfig-paths": "3.9.0",
"typescript": "4.1.5",
"webpack": "5.23.0"
},
"jest": {
"coverageDirectory": "<rootDir>/coverage",
"preset": "ts-jest"
}
}