-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.93 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "sentinel",
"private": true,
"packageManager": "bun@1.2.11",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun run --filter @sentinel/dashboard dev & bun run --filter @sentinel/api dev",
"build": "bun run --filter '*' build",
"lint": "bunx eslint .",
"format": "bunx prettier --check .",
"test": "bun run test:shared && bun run test:api && bun run test:dashboard && cargo test --manifest-path apps/indexer/Cargo.toml",
"test:shared": "bun run --filter @sentinel/shared-types test",
"test:api": "bun run --filter @sentinel/api test",
"test:dashboard": "bun run --filter @sentinel/dashboard test",
"test:e2e": "bun run --filter @sentinel/dashboard test:e2e",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@tailwindcss/vite": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "^1.3.14",
"@types/express": "^5.0.6",
"@types/node": "^25.9.1",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^10.7.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^16.4.0",
"potrace": "2.1.8",
"prettier": "^3.8.3",
"svgo": "3.3.3",
"tailwindcss": "^4.3.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.63.0",
"vite": "^6.4.2",
"vitest": "^4.1.8"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs,json,md,css}": [
"bunx prettier --write"
]
},
"dependencies": {
"imagetracerjs": "^1.2.6",
"jimp": "^1.6.1",
"pngjs": "^7.0.0"
}
}