-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.39 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
{
"name": "collaction",
"version": "0.0.1",
"description": "CollAction API",
"author": "CollAction.org",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "npm run format:prettier && npm run format:lint",
"format:prettier": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:lint": "npm run lint -- --fix --quiet",
"lint": "npm run lint:base -- \".\"",
"lint:base": "npm run lint:config:check && eslint --ext .ts",
"lint:config:check": "eslint-config-prettier src/main.ts",
"start:dev": "nest start",
"start:watch": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/src/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 --detectOpenHandles",
"typeorm:cli": "ts-node -T -r dotenv/config -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migration:create": "npm run typeorm:cli -- migration:create",
"migration:run": "npm run typeorm:cli -- migration:run -d src/ormconfig.ts",
"migration:revert": "npm run typeorm:cli -- migration:revert -d src/ormconfig.ts"
},
"dependencies": {
"@azure/storage-blob": "^12.14.0",
"@nestjs/common": "^9.0.3",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.0.3",
"@nestjs/cqrs": "^9.0.3",
"@nestjs/mongoose": "^9.0.3",
"@nestjs/platform-express": "^9.0.3",
"@nestjs/swagger": "^6.3.0",
"@nestjs/typeorm": "^9.0.1",
"@types/mime": "^2.0.3",
"aws-sdk": "^2.1162.0",
"body-parser": "^1.20.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"firebase": "^9.19.1",
"firebase-admin": "^11.5.0",
"i18n-iso-countries": "^7.5.0",
"mongodb": "^3.7.3",
"mongodb-memory-server": "^8.12.2",
"mongoose": "^6.4.0",
"pino": "^8.11.0",
"pino-pretty": "^10.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.4.1",
"rxjs": "^7.8.0",
"slugify": "^1.6.6",
"swagger-ui-express": "^4.6.2",
"typeorm": "^0.3.12",
"uuid": "^9.0.0"
},
"devDependencies": {
"@nestjs/cli": "^9.0.3",
"@nestjs/schematics": "^9.0.3",
"@nestjs/testing": "^9.0.3",
"@types/express": "^4.17.17",
"@types/jest": "29.5.0",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.11",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "29.5.0",
"mocha": "^10.2.0",
"prettier": "^2.8.7",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "29.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "^5.0.3"
}
}