-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
77 lines (77 loc) · 1.88 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
{
"name": "nestjs-toolbox",
"description": "nestjs toolbox",
"author": "bogdanlupu <[email protected]>",
"maintainers": [
{
"name": "bogdan lupu",
"email": "[email protected]"
}
],
"publicConfig": {
"access": "public"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"private": false,
"homepage": "https://github.com/lupu60/nestjs-toolbox#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lupu60/nestjs-toolbox.git"
},
"bugs": {
"url": "https://github.com/lupu60/nestjs-toolbox/issues"
},
"license": "MIT",
"keywords": [
"nestjs",
"toolbox",
"logger",
"bunyan",
"winston",
"open-api"
],
"engines": {
"node": ">=12 <=16",
"npm": ">= 6 <=8"
},
"scripts": {
"bootstrap": "npm install lerna && lerna bootstrap && npm install",
"format": "prettier --write \"packages/**/*.{ts,json}\"",
"reset": "npm run cleanup && rimraf -rf node_modules && npm run bootstrap",
"test": "lerna run test",
"build": "npm run cleanup && lerna run compile",
"cleanup": "lerna run cleanup --stream --parallel",
"lint": "lerna run lint",
"publish": "lerna publish",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@lerna/publish": "6.3.0",
"@lerna/run": "6.6.1",
"@types/jest": "27.4.1",
"eslint": "8.35.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-promise": "6.1.1",
"jest": "26.6.3",
"jest-junit": "16.0.0",
"lerna": "6.6.1",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"rimraf": "^5.0.0",
"standard-version": "9.5.0",
"ts-jest": "26.5.6",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "4.9.5"
},
"dependencies": {
"reflect-metadata": "0.2.1"
},
"volta": {
"node": "16.20.2"
}
}