-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
{
"name": "koodisailo",
"version": "3.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"lint": "next lint"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.0.0",
"@trpc/client": "^9.26.0",
"@trpc/next": "^9.26.0",
"@trpc/react": "^9.26.0",
"@trpc/server": "^9.26.0",
"@typegoose/typegoose": "^9.11.0",
"bootstrap": "^5.1.3",
"clipboard": "^2.0.11",
"clsx": "^1.2.1",
"connect-mongo": "^4.6.0",
"dotenv": "^16.0.3",
"express-session": "^1.17.3",
"highlightjs-line-numbers.js": "^2.8.0",
"ims-lti": "^3.0.2",
"jose": "^4.13.1",
"js-base64": "^3.7.2",
"mongoose": "^6.5.0",
"mongoose-findorcreate": "^3.0.0",
"next": "^12.2.0",
"next-session": "^4.0.5",
"randomstring": "^1.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.2",
"react-hook-form": "^7.33.1",
"react-hot-toast": "^2.3.0",
"react-intl": "^6.0.5",
"react-query": "^3.39.2",
"yargs": "^17.5.1",
"zod": "^3.17.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.2.2",
"@types/node": "^18.0.0",
"@types/randomstring": "^1.1.8",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"eslint": "^8.18.0",
"eslint-config-next": "^12.2.2",
"typescript": "^4.7.4"
},
"prettier": {
"overrides": [
{
"files": "*.md",
"options": {
"proseWrap": "always",
"printWidth": 80
}
}
]
}
}