-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.01 KB
/
package.json
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
{
"name": "oscalot",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "npm run build:wasm && npm run generate:types",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"precommit": "npm run generate:types && npm run format && npm run lint && npm run test",
"build:wasm": "cd wasm && make build",
"test:playwright": "npx playwright test",
"test:unit": "npx jest --passWithNoTests",
"test": "npm run test:unit && npm run test:playwright",
"generate:types": "cd internal/go-tools && go run types/main.go | npx quicktype -s schema --just-types -o ../../src/lib/types/gen.ts",
"prepare": "husky"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.4",
"@mui/material": "^6.4.4",
"@mui/material-nextjs": "^6.4.3",
"@uiw/codemirror-extensions-basic-setup": "^4.23.8",
"@uiw/codemirror-extensions-langs": "^4.23.8",
"@uiw/codemirror-theme-tokyo-night": "^4.23.8",
"@uiw/codemirror-theme-tokyo-night-day": "^4.23.8",
"@uiw/react-codemirror": "^4.23.8",
"formidable": "^3.5.2",
"next": "15.1.6",
"prism-react-renderer": "^2.4.1",
"prismjs": "^1.29.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-svg": "^16.3.0",
"prettier": "^3.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@playwright/test": "^1.50.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/formidable": "^3.4.5",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.17",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"eslint": "^9.20.1",
"eslint-config-next": "15.1.6",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}