-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "@darkruby/assets",
"private": true,
"version": "1.8.4",
"type": "module",
"dependencies": {
"date-fns": "^4.1.0",
"fp-ts": "^2.16.11",
"io-ts": "~2.2.22",
"io-ts-types": "^0.5.19"
},
"devDependencies": {
"prettier": "^3.8.3",
"@types/bun": "1.3.13",
"bun-types": "^1.3.13",
"typescript": "~7.0.2",
"@types/node": "^26.1.1"
},
"scripts": {
"web:dev": "cd packages/web && bun run dev",
"web:check": "cd packages/web && bun run check",
"web:build": "cd packages/web && bun run build",
"backend:dev": "cd packages/backend && bun run dev",
"backend:test": "cd packages/backend && bun test",
"backend:check": "cd packages/backend && bun run check",
"backend:build": "cd packages/backend && bun run build",
"core:check": "cd packages/core && bun run check",
"core:test": "cd packages/core && bun run test",
"check": "bun run core:check && bun run backend:check && bun run web:check",
"build": "bun run web:build && bun run backend:build"
},
"workspaces": [
"packages/*"
],
"prettier": {
"trailingComma": "none"
}
}