-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 867 Bytes
/
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
{
"name": "nestjs-microservices-interaction-solution",
"private": true,
"author": {
"name": "Aleksei Efimov",
"email": "alefi@mail.ru",
"url": "https://linkedin.com/in/alefi"
},
"license": "MIT",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,md}\"",
"clean": "turbo run clean --parallel"
},
"devDependencies": {
"@nestjs/cli": "10.1.17",
"@turbo/gen": "^1.9.7",
"dotenv-cli": "latest",
"eslint": "^8.46.0",
"eslint-config-custom": "*",
"prettier": "^3.0.2",
"turbo": "latest",
"typescript": "5.2.2"
},
"engines": {
"node": ">=20.5.0"
},
"packageManager": "npm@9.8.0",
"workspaces": [
"apps/*",
"packages/*"
]
}