-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.56 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
47
48
49
50
51
52
{
"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 .",
"biome-apply": "pnpm exec biome lint . --apply-unsafe",
"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.14",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"nodemon": "^3.1.9",
"openapi-typescript-codegen": "^0.25.0",
"pm2": "^5.4.3",
"pre-commit": "^1.2.2",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.5.14",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"wrangler": "^3.99.0"
}
}