forked from enkoder/beanstalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.46 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
{
"name": "beanstalk",
"description": "https://netrunner-beanstalk.net",
"workspaces": ["packages/*"],
"scripts": {
"lint": "pnpm --stream -r lint && pnpm biome",
"test": "pnpm -r build && pnpm -r test && pnpm lint",
"biome": "pnpm exec biome check --no-errors-on-unmatched --files-ignore-unknown=true .",
"build": "pnpm --stream -r run build",
"start": "pnpm exec pm2 start && pnpm exec pm2 logs",
"stop": "pnpm exec pm2 stop all",
"logs": "pnpm exec pm2 logs",
"status": "pnpm exec pm2 status",
"start-api": "pnpm exec pm2 start api",
"start-app": "pnpm exec pm2 start app",
"start-tailwind": "pnpm exec pm2 start tailwind",
"spec": "curl http://localhost:8787/api/spec.json > spec.json && pnpm exec openapi --input ./spec.json --output ./app/src/client --client axios",
"prepare": "pnpm exec husky"
},
"keywords": ["cloudflare", "netrunner", "typescript"],
"author": "",
"lint-staged": {
"*": ["pnpm biome"]
},
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.5.3-nightly.dca6a7a",
"@rspack/cli": "0.3.10",
"@rspack/core": "0.3.10",
"@types/jest": "^29.5.12",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nodemon": "^3.0.3",
"openapi-typescript-codegen": "^0.25.0",
"pm2": "^5.3.1",
"pre-commit": "^1.2.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"wrangler": "^3.28.3"
}
}