-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "parkit",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"libs/*"
],
"nohoist": [
"**/@nestjs",
"**/@nestjs/**"
]
},
"scripts": {
"format": "prettier \"{apps,libs}/**/*.{ts,tsx,js,json}\" --ignore-path .gitignore",
"format:check": "yarn format --check",
"format:write": "yarn format --write",
"tsc": "yarn nx run-many -t tsc",
"lint": "yarn nx run-many -t lint",
"build": "yarn nx run-many -t build",
"validate": "yarn format:write && yarn tsc && yarn lint && yarn build",
"prepare": "husky install",
"cloc": "npx cloc --exclude-dir=node_modules,dist,build,yarn.lock,package.json,generated.tsx,.next,.nx ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nx/eslint": "20.0.8",
"@nx/next": "20.0.8",
"@types/cookie": "^1.0.0",
"eslint": "~9.14.0",
"husky": "^9.1.6",
"nx": "20.0.8",
"prettier": "^3.0.0",
"typescript": "^5.6.3"
},
"dependencies": {
"cookie": "^1.0.1",
"next": "15.0.2",
"react": "18.3.1",
"react-dom": "18.3.1"
}
}