-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.05 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.05 KB
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
{
"name": "red-tetris",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"predev": "pnpm run init-env",
"init-env": "test -f .env || (echo 'Creating .env from .env.example...' && cp .env.example .env)",
"prettier": "pnpm --filter=server prettier && pnpm --filter=client prettier",
"prettier:check": "pnpm --filter=server prettier:check && pnpm --filter=client prettier:check",
"lint": "pnpm --filter=server lint && pnpm --filter=client lint",
"lint:check": "pnpm --filter=server lint:check && pnpm --filter=client lint:check",
"build": "pnpm run build:server && pnpm run build:client",
"build:server": "pnpm --filter=server build",
"build:client": "pnpm --filter=client build",
"dev": "concurrently -k -p \"[{name}]\" -n \"Server,Client,Database\" -c \"red.bold,blue.bold\" \"pnpm run dev:server\" \"pnpm run dev:client\"",
"dev:server": "pnpm --filter=server dev",
"dev:client": "pnpm --filter=client dev",
"start": "concurrently -k -p \"[{name}]\" -n \"Server,Client\" -c \"red.bold,blue.bold\" \"pnpm run start:server\" \"pnpm run start:client\"",
"start:server": "pnpm --filter=server start",
"start:client": "pnpm --filter=client start",
"test": "pnpm --filter=server test && pnpm --filter=client test",
"coverage": "pnpm --filter=server coverage && pnpm --filter=client coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.14.0",
"devDependencies": {
"@eslint/js": "^9.37.0",
"@next/eslint-plugin-next": "^15.5.5",
"@stylistic/eslint-plugin": "^5.4.0",
"concurrently": "^9.2.1",
"eslint": "^9.37.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^16.4.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
},
"dependencies": {
"eslint-plugin-next": "^0.0.0"
}
}