-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "kth-teaching-kit-frontend",
"version": "0.1.2",
"private": true,
"scripts": {
"dev": "npm run develop",
"develop": "npx prisma generate && next dev",
"build": "npx prisma generate && next build",
"start": "npx prisma generate && next start",
"lint": "next lint",
"analyze": "ANALYZE=true next build"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.3",
"@next/bundle-analyzer": "^13.4.0",
"@prisma/client": "^4.10.1",
"@svgr/webpack": "^6.5.1",
"axios": "^1.3.0",
"jszip": "^3.10.1",
"marked": "^4.2.12",
"next": "^14.2.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^8.0.3",
"remark-gfm": "^3.0.1",
"swr": "^2.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/marked": "^4.0.8",
"@types/node": "^18.11.9",
"@types/react": "18.3.0",
"@types/react-dom": "18.3.0",
"@types/styled-components": "^5.1.26",
"eslint": "^8.12.0",
"eslint-config-next": "^14.2.14",
"prisma": "4.10.1",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}