-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.45 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
91
{
"name": "dexa-api",
"version": "0.0.1",
"description": "DEXA API",
"author": "DexAuction",
"license": "",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prestart": "npm run build",
"start": "node -r ./dist/main.js",
"start:dev": "concurrently --handle-input \"wait-on dist/main.js && nodemon\" \"tsc -w -p tsconfig.build.json\" ",
"start:debug": "nodemon --config nodemon-debug.json",
"audit": "npm audit fix",
"lint": "eslint . --ext .js,.ts --ignore-path=.eslintignore --fix",
"test": "jest",
"clean": "trash dist"
},
"dependencies": {
"@nestjs/common": "^6.11.11",
"@nestjs/config": "^0.5.0",
"@nestjs/core": "^6.11.11",
"@nestjs/mongoose": "7.2.4",
"@nestjs/platform-express": "^6.11.11",
"@types/morgan": "^1.9.1",
"@types/node": "^10.12.18",
"axios": "^0.20.0",
"axios-retry": "^3.1.9",
"body-parser": "^1.19.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.2",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"express-openapi-validate": "^0.5.1",
"file-type": "^15.0.1",
"helmet": "^4.2.0",
"js-yaml": "^3.14.0",
"lodash": "^4.17.20",
"mongoose": "5.13.14",
"morgan": "^1.10.0",
"reflect-metadata": "^0.1.12",
"request-ip": "^2.1.3",
"rxjs": "^6.3.3",
"typescript": "^3.8.3"
},
"devDependencies": {
"@nestjs/testing": "^6.11.11",
"@types/express": "^4.16.0",
"@typescript-eslint/parser": "^2.13.0",
"concurrently": "^5.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^26.4.2",
"lint-staged": "^9.5.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.3",
"supertest": "^3.4.1",
"ts-jest": "^26.4.1",
"trash-cli": "^1.4.0"
},
"lint-staged": {
"{src,test,e2e,cypress}/**/*.{ts,json,md,scss}": [
"npm run lint",
"git add"
]
},
"files": [
"src"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}