-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
{
"name": "cmumaps-data-visualization",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"server": "node server/index.js",
"lint": "next lint",
"tsc": "npx --package typescript tsc",
"prettier": "prettier --write */**/*.{js,jsx,json,ts,tsx,scss,css,md}",
"vercel-install": "python3 -m pip install -r requirements.txt && ./init_submodule.sh && npx prisma generate && next build"
},
"dependencies": {
"@clerk/nextjs": "^6.9.6",
"@datastructures-js/priority-queue": "^6.3.1",
"@prisma/client": "^6.1.0",
"@prisma/extension-pulse": "^1.2.0",
"@reduxjs/toolkit": "^2.5.0",
"@turf/turf": "^7.0.0",
"archiver": "^7.0.1",
"bufferutil": "^4.0.8",
"konva": "^9.3.11",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-konva": "^18.2.10",
"react-pdf": "^9.0.0",
"react-redux": "^9.2.0",
"react-select": "^5.8.1",
"react-toastify": "^10.0.5",
"socket.io-client": "^4.8.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/lodash": "^4.17.14",
"@types/node": "^20.12.12",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.19",
"eslint": "8.57.1",
"eslint-config-next": "15.1.2",
"express": "^4.21.2",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"prisma": "^6.1.0",
"socket.io": "^4.8.1",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}