-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.64 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ysm-backend",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"start:heroku": "node dist/main --optimize_for_size --max_old_space_size=460 --gc_interval=100",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"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": "^7.5.0",
"@nestjs/config": "^0.5.0",
"@nestjs/core": "^7.4.4",
"@nestjs/platform-express": "^7.4.4",
"@types/jsonwebtoken": "^8.5.0",
"axios": "^0.20.0",
"express-rate-limit": "^5.1.3",
"firebase-admin": "^9.2.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"nanoid": "^3.1.31",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rollbar": "^2.25.0",
"rxjs": "^6.6.3",
"storyblok-js-client": "^3.1.1"
},
"devDependencies": {
"@golevelup/ts-jest": "^0.3.0",
"@nestjs/cli": "^7.5.1",
"@nestjs/schematics": "^7.1.2",
"@nestjs/testing": "^7.4.4",
"@types/express": "^4.17.8",
"@types/express-rate-limit": "^5.1.0",
"@types/jest": "26.0.15",
"@types/jest-when": "^2.7.2",
"@types/lodash": "^4.14.162",
"@types/node": "^14.14.0",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"axios-debug-log": "^0.8.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "27",
"jest-when": "^2.7.2",
"prettier": "^2.1.2",
"supertest": "^5.0.0",
"ts-jest": "27",
"ts-loader": "^8.0.6",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.7.2"
},
"resolutions": {
"minimist": "^1.2.6"
},
"engines": {
"node": "14.x",
"yarn": "1.x"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}