-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 907 Bytes
/
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
{
"name": "buutti",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"format": "biome format ./apps ./packages",
"lint": "biome lint ./apps ./packages",
"check": "biome check --apply ./apps ./packages",
"dev:db": "cd apps/fastify-app && pnpm run dev:db",
"dev:db:helper": "cd apps/fastify-app && pnpm run dev:db:helper",
"dev:db:setup": "pnpm run dev:db && cd apps/fastify-app && pnpm run db:generate",
"sleep5s": "node -e \"setTimeout(() => process.exit(0), 5000)\"",
"dev": "concurrently -r \"cd ./apps/fastify-app && pnpm run dev\" \"cd ./apps/react-app && pnpm run dev\" ",
"test": "concurrently -r \"pnpm run dev\" \"pnpm run sleep5s && cd ./apps/e2e-tests && npx playwright test\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.6.1",
"concurrently": "^8.2.2"
}
}