generated from ogghst/typescript-nest-next-mui-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "fcm",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Flight Cost Monitor Monorepo",
"author": "",
"license": "UNLICENSED",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "turbo format",
"test": "turbo test",
"test:e2e": "turbo test:e2e",
"clean": "turbo run clean",
"clean:all": "pnpm run clean && pnpm -r exec rimraf node_modules .turbo .next dist out coverage",
"update-deps": "pnpm update -r --latest",
"update-deps:safe": "pnpm update -r",
"check-updates": "pnpm exec npm-check-updates",
"preinstall": "npx only-allow pnpm",
"docker:build": "turbo run docker:build",
"docker:push": "turbo run docker:push",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down"
},
"devDependencies": {
"@fcm/eslint-config": "workspace:*",
"@fcm/typescript-config": "workspace:*",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.17.0",
"npm-check-updates": "^17.1.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"turbo": "^2.3.3"
},
"packageManager": "pnpm@9.15.5",
"engines": {
"node": ">=20",
"pnpm": ">=9.15.0"
},
"pnpm": {
"overrides": {
"typescript": "^5.7.2",
"@types/node": "^20.17.10",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2"
}
}
}