-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.47 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
{
"name": "crucible",
"version": "0.0.0",
"private": true,
"description": "Crucible — agentic Web3 development environment.",
"license": "UNLICENSED",
"type": "module",
"packageManager": "bun@1.3.6",
"engines": {
"bun": ">=1.3.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev --filter=@crucible/backend --filter=@crucible/frontend",
"build": "turbo run build",
"check-types": "turbo run check-types",
"lint": "turbo run lint",
"ci:full": "bun run format:check && bun run lint && bun run check-types && bun run build && bash scripts/ci-test.sh",
"test": "turbo run test",
"format:staged": "lint-staged",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md,svelte,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md,svelte,css}\""
},
"lint-staged": {
"*.{ts,tsx,js,json,md,yml,yaml}": "prettier --write"
},
"devDependencies": {
"@eslint/compat": "^2.0.5",
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.6",
"bun-types": "^1.3.6",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.1",
"globals": "^17.5.0",
"hardhat": "^3.4.2",
"lint-staged": "^16.4.0",
"portless": "^0.10.3",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.5.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.59.0",
"jsrepo": "^3.7.0"
}
}