This repository has been archived by the owner on Sep 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.67 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
{
"name": "git-connect-api",
"version": "0.0.1",
"description": "",
"author": "",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "nest start",
"dev": "nest start --debug --watch",
"start:prod": "node dist/main",
"fix": "npm run eslint & npm run prettier",
"eslint": "eslint src/**/*.ts --fix",
"prettier": "prettier --write \"src/**/*.ts\"",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"dependencies": {
"@nestjs/common": "^6.7.2",
"@nestjs/core": "^6.7.2",
"@nestjs/platform-express": "^6.10.14",
"@nestjs/platform-fastify": "^6.10.14",
"mongoose": "^5.8.9",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rxjs": "^6.5.3"
},
"devDependencies": {
"@nestjs/cli": "^6.9.0",
"@nestjs/schematics": "^6.7.0",
"@nestjs/testing": "^6.7.1",
"@types/chai": "^4.2.7",
"@types/express": "^4.17.1",
"@types/mocha": "^5.2.7",
"@types/mongoose": "^5.5.41",
"@types/node": "^12.7.5",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^7.0.0",
"prettier": "^1.18.2",
"supertest": "^4.0.2",
"ts-loader": "^6.1.1",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
}
}