forked from doug-martin/nestjs-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.53 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
{
"name": "nestjs-query",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean",
"build": "lerna run build",
"compile": "lerna run compile",
"lerna:pub": "lerna publish from-git",
"lerna:version": "lerna version",
"release": "npm run build && npm run lerna:version && npm run lerna:pub",
"test": "npm run lint && npm run jest",
"test:e2e": "npm run jest:e2e",
"lint": "eslint --cache --ext=.ts .",
"lint:fix": "eslint --fix --ext=.ts .",
"jest": "jest --runInBand --coverage",
"jest:e2e": "jest --runInBand --config=./jest.e2e.config.js",
"jest:unit": "jest --coverage --config=./jest.unit.config.js",
"coverage": "cat ./coverage/lcov.info | coveralls",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-angular": "12.1.1",
"@types/jest": "26.0.22",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"coveralls": "3.1.0",
"eslint": "7.24.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.2.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.3.5",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-tsdoc": "0.2.12",
"husky": "6.0.0",
"jest": "26.6.3",
"jest-extended": "0.11.5",
"lerna": "4.0.0",
"prettier": "2.2.1",
"ts-jest": "26.5.5",
"tsconfig-extends": "1.0.1",
"typescript": "4.2.4"
}
}