-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.55 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.55 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
{
"name": "arcade",
"packageManager": "[email protected]",
"scripts": {
"prepare": "pnpm build && husky",
"clean": "git clean -xdf",
"dev": "turbo watch dev",
"test": "turbo run test",
"test:ts": "turbo run test:ts",
"test:cairo": "turbo run test:cairo",
"test:watch": "turbo run test:watch",
"format": "turbo run format",
"format:check": "turbo run format:check",
"format:ts": "turbo run format:ts",
"format:check:ts": "turbo run format:check:ts",
"format:cairo": "turbo run format:cairo",
"format:check:cairo": "turbo run format:check:cairo",
"lint": "turbo run lint",
"lint:check": "turbo run lint:check",
"lint:ts": "turbo run lint:ts",
"lint:check:ts": "turbo run lint:check:ts",
"lint:cairo": "turbo run lint:cairo",
"lint:check:cairo": "turbo run lint:check:cairo",
"build:scarb": "turbo run build:scarb",
"build": "turbo run build",
"build:deps": "turbo run build:deps",
"type:check": "turbo run type:check"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"husky": "^9.1.7",
"turbo": "^2.5.4",
"@types/node": "^22.15.23",
"change-case": "^5.4.4",
"csv-parser": "^3.2.0",
"eslint": "^9.12.0",
"prettier": "^3.5.3",
"tsup": "^8.3.5"
},
"bin": {
"gen": "./scripts/genAchievements.ts"
},
"pnpm": {
"overrides": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}
}