-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.77 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
{
"private": true,
"name": "menu-mono",
"version": "0.0.1",
"description": "Simple monorepo for testing new techstack",
"license": "MIT",
"author": "Stanislau Shliakhtsich",
"scripts": {
"api:dev": "turbo run dev --filter=api",
"clean": "turbo run clean",
"clear-node-modules": "rimraf packages/*/node_modules && rimraf apps/*/node_modules && rimraf configs/**/*/node_modules && rimraf node_modules",
"clear-turbo-cache": "rimraf packages/*/.turbo && rimraf apps/*/.turbo && rimraf configs/**/*/.turbo && rimraf .turbo",
"format": "turbo run format",
"format-packagejson": "prettier-package-json --write './package.json' './**/*/package.json'",
"libs:build": "turbo run build --filter=@packages*",
"lint": "turbo run lint",
"lint-staged": "turbo run lint-staged",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"test:integration": "turbo run test:integration",
"test:unit": "turbo run test:unit",
"typecheck": "turbo run typecheck",
"web:dev": "turbo run dev --filter=web",
"web-admin:dev": "turbo run dev --filter=web-admin"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"jest": "^29.7.0",
"prettier-package-json": "^2.8.0",
"rimraf": "^5.0.5"
},
"keywords": [
"nestjs",
"nextjs",
"pnpm",
"react",
"turbo"
],
"engines": {
"node": ">=18.15.0",
"npm": "please-use-pnpm",
"pnpm": ">=8.*",
"yarn": "please-use-pnpm"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"postcss@<8.4.31": ">=8.4.31",
"zod@<=3.22.2": ">=3.22.3",
"next@>=0.9.9 <13.4.20-canary.13": ">=13.4.20-canary.13",
"@apollo/experimental-nextjs-app-support@<=0.6.0": ">=0.7.0"
}
}
}