-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.63 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "language-exercise",
"version": "0.1.0",
"scripts": {
"dev": "node server.js",
"build": "NODE_ENV=production next build",
"export": "next export",
"start": "NODE_ENV=production PORT=3004 node server.js",
"test": "jest",
"test-silent": "jest --silent",
"prepare": "husky"
},
"dependencies": {
"@date-io/date-fns": "^3.0.0",
"@dnd-kit/core": "^6.1.0",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fontsource/josefin-sans": "^5.0.19",
"@fontsource/lato": "^5.0.19",
"@fontsource/raleway": "^5.0.17",
"@fontsource/roboto-mono": "^5.0.17",
"@fontsource/space-mono": "^5.0.19",
"@monaco-editor/react": "^4.6.0",
"@next/bundle-analyzer": "^14.1.2",
"@noble/hashes": "^1.4.0",
"@popperjs/core": "^2.11.8",
"@tanstack/react-query": "^5.25.0",
"@types/commonmark": "^0.27.9",
"@vectopus/atlas-icons-react": "github:rage/Atlas-icons-react#d310057c60f4f011306c35ae9caf025c5a09e41b",
"axios": "^1.6.7",
"commonmark": "^0.31.0",
"date-fns": "^3.3.1",
"dompurify": "^3.0.9",
"express": "^4.18.3",
"http-proxy-middleware": "^2.0.6",
"i18next": "^23.10.0",
"immer": "^10.0.3",
"katex": "^0.16.9",
"lodash": "^4.17.21",
"monaco-editor": "^0.46.0",
"next": "^14.2.4",
"postcss": "^8.4.35",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.0",
"react-hot-toast": "^2.4.1",
"react-i18next": "^14.0.5",
"react-popper": "^2.3.0",
"react-spring": "^9.7.3",
"svgo": "^3.2.0",
"use-debounce": "^10.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@svgr/webpack": "^8.1.0",
"@types/dompurify": "^3.0.5",
"@types/jest": "^29.5.12",
"@types/katex": "^0.16.7",
"@types/lodash": "^4.14.202",
"@types/luxon": "^3.4.2",
"@types/react": "^18.2.63",
"@types/react-dom": "^18.2.20",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"eslint-plugin-i18next": "^6.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"globals": "^15.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"postcss-styled-syntax": "^0.6.4",
"stylelint": "^16.2.1",
"stylelint-config-recommended": "^14.0.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"typescript-eslint": "^7.13.1"
},
"overrides": {
"react": "^18.3.1"
}
}