-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 850 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 850 Bytes
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
{
"devDependencies": {
"@playwright/test": "^1.34.2",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"concurrently": "^7.6.0",
"dotenv-cli": "^6.0.0",
"eslint": "^8.41.0",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13"
},
"scripts": {
"dev": "concurrently -n api,web,codegen -c blue,magenta,yellow 'bun run dev:api' 'bun run dev:web' 'bun run dev:codegen'",
"dev:api": "rails s -p 3030",
"dev:web": "cd web && bun run watch",
"dev:codegen": "cd web && bun graphql-codegen --watch",
"dev:test": "cd api && ENV_TYPE=test PORT=4445 bun run bin/dev-test.ts",
"deploy": "bun run deploy.js",
"typecheck": "cd web && bun typecheck",
"lint": "cd web && bun lint"
},
"workspaces": [
"web"
]
}