-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.38 KB
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": "bench-review",
"type": "module",
"version": "0.1.0",
"private": true,
"description": "A judge review application powered by Stacks",
"scripts": {
"dev": "./buddy dev",
"build": "bun build.ts",
"build:stacks": "./buddy build",
"preview": "bun preview.ts",
"start": "bun preview.ts",
"lint": "bunx --bun pickier .",
"lint:fix": "bunx --bun pickier . --fix",
"typecheck": "bun tsc --noEmit",
"typecheck:app": "bun tsc --noEmit -p tsconfig.app.json"
},
"dependencies": {
"@stacksjs/components": "^0.2.72",
"chart.js": "^4.5.1",
"leaflet": "^1.9.4",
"ofetch": "^1.5.1",
"perfect-debounce": "^2.1.0",
"pretty-bytes": "^7.1.0",
"sharp": "^0.34.5",
"stacks": "workspace:*",
"ts-broadcasting": "^0.0.4",
"ts-medium-editor": "^0.1.0"
},
"devDependencies": {
"@stacksjs/stx": "^0.2.72",
"bun-plugin-stx": "^0.2.72",
"@stacksjs/ts-i18n": "0.1.8",
"@types/leaflet": "^1.9.21",
"bun-git-hooks": "^0.3.1"
},
"workspaces": [
"storage/framework/**",
"!**/node_modules/**",
"!**/dist/**",
"!storage/framework/server/storage/**",
"!storage/framework/cache/**"
],
"git-hooks": {
"pre-commit": {
"staged-lint": {
"*.{js,ts,json,yaml,yml,md}": "bunx --bun pickier lint --fix"
}
},
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
}
}