-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.66 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.66 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
{
"name": "@polycode/backend",
"version": "1.1.1-rc59.main.493e56a",
"license": "MIT",
"scripts": {
"start": "nx serve --no-watch",
"dev": "PORT=3030 nx serve",
"populate-db": "psql postgresql://postgres:postgres@localhost:5432/postgres < ./scripts/populate-postgres.sql",
"build": "nx build",
"test": "nx run-many --target=test --all=true --verbose=true",
"lint": "nx run-many --target=lint --all=true --verbose=true",
"nx": "nx"
},
"private": true,
"dependencies": {
"@casl/ability": "^5.4.3",
"@kubernetes/client-node": "^0.17.0",
"@nestjs/axios": "^0.0.7",
"@nestjs/common": "^8.0.0",
"@nestjs/config": "^2.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/jwt": "^8.0.0",
"@nestjs/mapped-types": "^1.0.1",
"@nestjs/mongoose": "^9.0.3",
"@nestjs/platform-express": "^8.0.0",
"@nestjs/sequelize": "^8.0.0",
"@nestjs/swagger": "^5.2.1",
"@types/jsdom": "^20.0.1",
"@willsoto/nestjs-prometheus": "^4.6.0",
"await-to-js": "^3.0.0",
"aws-sdk": "^2.1124.0",
"bcrypt": "^5.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dockerode": "^3.3.1",
"express": "^4.18.0",
"helmet": "^5.0.2",
"joi": "^17.6.0",
"lodash": "^4.17.21",
"luxon": "^2.3.2",
"mongoose": "^6.3.2",
"node-ses": "^3.0.3",
"nodemailer": "^6.7.7",
"pg": "^8.7.3",
"prom-client": "^14.0.1",
"reflect-metadata": "^0.1.13",
"response-time": "^2.3.2",
"rxjs": "^7.0.0",
"sequelize": "^6.19.0",
"sequelize-typescript": "^2.1.3",
"swagger-ui-express": "^4.3.0",
"tslib": "^2.3.0",
"uniqid": "^5.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@nestjs/schematics": "^8.0.0",
"@nestjs/testing": "^8.0.0",
"@nrwl/cli": "14.0.3",
"@nrwl/eslint-plugin-nx": "14.0.3",
"@nrwl/jest": "14.0.3",
"@nrwl/js": "14.0.3",
"@nrwl/linter": "14.0.3",
"@nrwl/nest": "14.0.3",
"@nrwl/node": "14.0.3",
"@nrwl/workspace": "14.0.3",
"@types/aws-sdk": "^2.7.0",
"@types/bcrypt": "^5.0.0",
"@types/dockerode": "^3.3.8",
"@types/express": "^4.17.13",
"@types/jest": "27.4.1",
"@types/lodash": "^4.14.182",
"@types/luxon": "^2.3.1",
"@types/node": "16.11.7",
"@types/nodemailer": "^6.4.4",
"@types/sequelize": "^4.28.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "~5.18.0",
"@typescript-eslint/parser": "~5.18.0",
"eslint": "~8.12.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "27.5.1",
"nx": "14.0.3",
"prettier": "^2.5.1",
"ts-jest": "27.1.4",
"ts-node": "9.1.1",
"typescript": "~4.6.2"
}
}