-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.59 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
{
"name": "challenge-composer",
"version": "0.1.1",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"typecheck": "tsc -b --noEmit",
"prepare": "node scripts/install-git-hooks.mjs",
"release": "release-it --config config/.release-it.json"
},
"dependencies": {
"@pkcprotocol/pkc-js": "0.0.19",
"jsonc-parser": "3.3.1",
"lz-string": "1.5.0",
"react": "19.2.5",
"react-dom": "19.2.5",
"zod": "4.3.6"
},
"devDependencies": {
"@bitsocial/ai-moderation-challenge": "0.1.1",
"@bitsocial/captcha-canvas-challenge": "0.1.4",
"@bitsocial/evm-contract-challenge": "0.1.3",
"@bitsocial/voucher-challenge": "0.1.2",
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"@release-it/conventional-changelog": "10.0.5",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"@vitest/ui": "4.1.5",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"happy-dom": "20.9.0",
"release-it": "19.2.4",
"typescript": "6.0.3",
"vite": "8.0.9",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "4.1.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}