forked from zxypro1/algolocal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.65 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.65 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
{
"name": "offline-leet-practice",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "node setup-problems.js && next build",
"start": "next start",
"deploy-local": "npm run build && npm start",
"setup": "npm install && npm run build",
"test": "node scripts/test-runner.js",
"test:watch": "jest --watch",
"test:coverage": "node scripts/test-runner.js all --coverage",
"test:api": "jest tests/api",
"test:specific": "node scripts/test-runner.js specific",
"test:solutions": "node scripts/test-runner.js specific solution",
"test:data": "node scripts/test-runner.js specific data"
},
"dependencies": {
"@mantine/core": "7.6.1",
"@mantine/hooks": "7.6.1",
"@mantine/notifications": "7.6.1",
"@monaco-editor/react": "^4.7.0",
"@tabler/icons-react": "^3.34.1",
"@types/katex": "^0.16.7",
"@types/react-syntax-highlighter": "^15.5.13",
"isomorphic-dompurify": "^2.26.0",
"katex": "^0.16.22",
"marked": "^16.2.0",
"mermaid": "^11.10.1",
"next": "13.5.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.3",
"rehype-katex": "^7.0.1",
"rehype-mermaid": "^3.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"vm2": "3.9.11"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "20.4.2",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@types/supertest": "^6.0.3",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"supertest": "^6.3.4",
"typescript": "5.1.6"
}
}