This repository has been archived by the owner on Mar 27, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.52 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": "rollify",
"version": "0.1.0",
"private": true,
"cacheDirectories": [
".next/cache"
],
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"scripts": {
"dev": "next dev",
"build": "prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint",
"analyze": "cross-env ANALYZE=true next build"
},
"dependencies": {
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/modifiers": "^6.0.0",
"@dnd-kit/sortable": "^7.0.1",
"@emotion/cache": "^11.9.3",
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.7",
"@prisma/client": "^4.0.0",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"copy-to-clipboard": "^3.3.1",
"iron-session": "^6.1.3",
"mathjs": "^11.0.1",
"next": "12.2.3",
"next-rosetta": "^2.0.2",
"react": "18.2.0",
"react-color": "^2.19.3",
"react-dom": "18.2.0",
"react-draggable": "^4.4.5",
"react-window": "^1.8.7",
"sharp": "^0.30.7",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.2.2",
"@types/bcrypt": "^5.0.0",
"@types/node": "18.0.3",
"@types/react": "18.0.15",
"@types/react-color": "^3.0.6",
"@types/react-dom": "18.0.6",
"@types/react-window": "^1.8.5",
"cross-env": "^7.0.3",
"eslint": "8.19.0",
"eslint-config-next": "12.2.2",
"eslint-plugin-unused-imports": "^2.0.0",
"prisma": "^4.0.0",
"typescript": "4.7.4"
},
"engines": {
"node": ">=16.16.0",
"npm": ">=8.19.2"
}
}