-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 973 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 973 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
27
28
29
{
"type": "module",
"devDependencies": {
"@bazel/buildifier": "^6.4.0",
"@sxproto/sxpb": "github:sxproto/sxpb-js#deb8840f13a2d192360b7ec2d3429ba05e7ca0b0",
"@types/node": "^22.10.6",
"eslint": "^9.35.0",
"eslint-plugin-jsonc": "^2.20.1",
"npm-run-all2": "^8.0.4",
"playwright": "^1.57.0",
"tsx": "^4.21.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.48.0",
"vite": "^6.2.0",
"vitest": "^3.0.0"
},
"scripts": {
"buildifier:check": "buildifier -r -mode=check .",
"buildifier:fix": "buildifier -r -mode=fix .",
"build": "tsc",
"eslint:check": "eslint .",
"eslint:fix": "eslint . --fix",
"lint:fix": "npm-run-all --parallel eslint:fix buildifier:fix",
"lint": "npm-run-all --parallel eslint:check buildifier:check",
"serve:demo": "node dist/src/server/main.js --http_path=/tryswap --demo_urlpath=demo",
"test": "npm run build && vitest run",
"tidy": "npm run lint:fix"
}
}