-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 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
{
"name": "create-learn-python-quiz",
"version": "0.1.0",
"private": false,
"description": "A static Python concepts quiz inspired by Create & Learn curriculum.",
"homepage": "https://createlearn.github.io/python-quiz/",
"bugs": {
"url": "https://github.com/CreateLearn/python-quiz/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CreateLearn/python-quiz.git"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "oxlint --react-plugin --jsx-a11y-plugin --vitest-plugin . && oxfmt --check .",
"fmt": "oxfmt --write .",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^9.0.0",
"@mui/material": "^9.0.0",
"dompurify": "^3.2.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.0.5",
"@types/node": "^22.13.10",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^29.0.2",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5"
}
}