-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.93 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
{
"name": "nodejs-api",
"version": "0.0.0",
"description": "Node.js Sample API",
"author": "Igor Gassmann <[email protected]> (https://igassmann.me)",
"private": true,
"scripts": {
"dev": "tsnd --respawn --inspect -- ./src/main.ts",
"dev:gui": "ndb tsnd --respawn -- ./src/main.ts",
"build": "tsc",
"start": "node dist/main",
"format": "prettier \"**/*.{ts,js,json,md,yml,html,css,scss}\" --ignore-path ./.gitignore --write",
"lint": "eslint \"**/*.{js,ts}\" --ignore-path ./.gitignore --fix",
"test": "jest",
"test:unit": "yarn test ./src",
"test:cov": "yarn test --coverage",
"test:watch": "yarn test --watch"
},
"dependencies": {
"@hapi/joi": "^15.1.0",
"@nestjs/common": "^7.6.15",
"@nestjs/core": "^7.6.15",
"@nestjs/cqrs": "^7.0.0",
"@nestjs/platform-express": "^7.6.15",
"@nestjsplus/config": "^1.0.14",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"express": "^4.17.1",
"mongodb": "^3.6.5",
"nest-mongodb": "^6.1.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.6.7",
"uuid": "^8.3.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@nestjs/testing": "^7.6.15",
"@types/jest": "^26.0.22",
"@types/mongodb": "^3.6.11",
"@types/node": "^14.14.37",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.3.3",
"husky": "^6.0.0",
"jest": "^26.1.0",
"lint-staged": "^10.5.4",
"ndb": "^1.1.5",
"prettier": "^2.0.5",
"ts-jest": "^26.5.4",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3",
"yarnhook": "^0.5.1"
},
"engines": {
"node": "^12.19.1",
"yarn": "^1.16.0"
}
}