-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"audit": "lerna-audit",
"build": "lerna run build",
"format:check": "prettier --check .",
"format:check:package": "prettier --check \"packages/${PACKAGE}/**/*\"",
"format:write": "prettier --write .",
"lerna": "lerna",
"lint": "lerna run lint",
"test": "jest"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@nestjs/common": "^9.4.3",
"@nestjs/core": "^9.4.3",
"@nestjs/platform-express": "^9.4.3",
"@nestjs/platform-fastify": "^9.4.3",
"@nestjs/testing": "^9.4.3",
"@types/express": "^4.17.6",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.0.0",
"fastify": "^4.18.0",
"jest": "^29.6.4",
"lerna": "^7.0.1",
"lerna-audit": "^1.2.0",
"nx": "^16.3.2",
"prettier": "^2.1.2",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.1.1",
"typescript": "^4.0.5"
},
"engines": {
"node": ">=18.1.0"
}
}