-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.72 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
{
"name": "ada-api",
"version": "0.3.0",
"description": "REST API for ADA",
"author": "Gulfaraz Rahman",
"private": true,
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format:fix": "npm run format:check -- --write",
"format:check": "prettier --check \"**/*.{md,js,ts,scss,css,html,json}\" ",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint '{src,e2e}/**/*.ts' --fix",
"test": "jest --config ./jest.json",
"test:watch": "jest --config ./jest.json --watch",
"test:cov": "jest --config ./jest.json --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./e2e/jest.json",
"migration:generate": "npx typeorm -o -d dist/config/orm.config.js migration:generate",
"migration:run": "npx typeorm migration:run -d dist/config/orm.config.js"
},
"dependencies": {
"@nestjs/common": "^8.0.6",
"@nestjs/core": "^8.0.6",
"@nestjs/jwt": "^8.0.1",
"@nestjs/platform-express": "^8.0.6",
"@nestjs/swagger": "^5.0.9",
"@nestjs/typeorm": "^9.0.1",
"@types/geojson": "^7946.0.10",
"argon2": "^0.28.3",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.2",
"express": "^4.18.2",
"mysql2": "^2.3.3",
"nestjs-i18n": "^8.2.2",
"nestjs-pino": "^2.5.0",
"pino": "^7.6.4",
"pino-http": "^8.2.1",
"pino-http-print": "^3.1.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.3.0",
"statuses": "^2.0.1",
"swagger-ui-express": "^4.1.6",
"typeorm": "^0.3.10",
"typeorm-naming-strategies": "^2.0.0"
},
"devDependencies": {
"@nestjs/cli": "^8.1.1",
"@nestjs/schematics": "^8.0.3",
"@nestjs/testing": "^8.2.6",
"@types/express": "^4.17.8",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@types/statuses": "^2.0.0",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.1.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"prettier": "^2.1.2",
"supertest": "^6.0.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.5"
},
"pre-commit": [
"lint",
"format:check"
]
}