-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.5 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
72
73
74
75
76
77
78
79
80
{
"name": "nest-user-starter",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"mocha": "mocha -r ts-node/register --reporter mochawesome --reporter-options json=false --exit",
"mocha:e2e": "mocha -r ts-node/register test/**/*spec.ts --reporter mochawesome --reporter-options json=false --exit",
"mocha:cov": "nyc --reporter=text mocha",
"test:context": "ts-node test/context.ts --exit"
},
"dependencies": {
"@nestjs/common": "^8.4.4",
"@nestjs/core": "^8.4.7",
"@nestjs/mapped-types": "*",
"@nestjs/passport": "^8.2.1",
"@nestjs/platform-express": "^8.4.7",
"@nestjs/platform-fastify": "^8.4.7",
"@nestjs/swagger": "^5.2.1",
"@prisma/client": "^3.12.0",
"bcrypt": "^5.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.1",
"faker": "^5.5.3",
"fastify-helmet": "^7.1.0",
"fastify-swagger": "^5.1.0",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.19",
"@nestjs/cli": "^8.2.5",
"@nestjs/schematics": "^8.0.10",
"@nestjs/testing": "^8.4.7",
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-subset": "^1.3.3",
"@types/cron": "^1.7.3",
"@types/express": "^4.17.13",
"@types/faker": "^6.6.9",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.24",
"@types/passport-local": "^1.0.34",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.19.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-exclude": "^2.1.0",
"chai-subset": "^1.6.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"mocha": "^10.0.0",
"mochawesome": "^7.1.3",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"prisma": "^3.12.0",
"supertest": "^6.2.2",
"ts-loader": "^9.2.8",
"ts-node": "^10.8.1",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
}
}