the next generation of the in-browser educational proof assistant
1{
2 "name": "holbert-ng",
3 "private": true,
4 "version": "0.0.0",
5 "type": "module",
6 "scripts": {
7 "dev": "vite",
8 "build": "tsc -b && vite build",
9 "lint": "eslint .",
10 "preview": "vite preview",
11 "res:build": "rescript",
12 "res:clean": "rescript clean",
13 "res:dev": "rescript watch",
14 "res:format": "rescript format",
15 "test": "pta 'tests/*.mjs'",
16 "test-watch": "onchange --initial '{tests,src}/*.mjs' -- pta 'tests/*.mjs'",
17 "prepare": "husky"
18 },
19 "dependencies": {
20 "@jmagaram/rescript-seq": "^4.4.1",
21 "@rescript/react": "^0.14.0",
22 "react": "^19.1.0",
23 "react-dom": "^19.1.0",
24 "rescript": "^12.0.0"
25 },
26 "devDependencies": {
27 "@dusty-phillips/rescript-zora": "^5.0.1",
28 "@eslint/js": "^9.25.0",
29 "@rescript/core": "^1.6.1",
30 "@rescript/std": "^11.1.4",
31 "@types/react": "^19.1.2",
32 "@types/react-dom": "^19.1.2",
33 "@vitejs/plugin-react-swc": "^4.2.2",
34 "eslint": "^9.25.0",
35 "eslint-plugin-react-hooks": "^7.0.1",
36 "eslint-plugin-react-refresh": "^0.4.19",
37 "globals": "^16.0.0",
38 "husky": "^9.1.7",
39 "lint-staged": "^16.2.3",
40 "onchange": "^7.1.0",
41 "pta": "^1.3.0",
42 "typescript": "^5.9.3",
43 "typescript-eslint": "^8.30.1",
44 "vite": "^7.2.6"
45 },
46 "lint-staged": {
47 "*.res": "rescript format"
48 }
49}