-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "cmumap",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postinstall": "prisma generate",
"start": "next start",
"validate": "npm run lint && npm run type-check",
"type-check": "tsc --noEmit",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:strict": "next lint '*/**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --write */**/*.{js,jsx,json,ts,tsx,scss,css,md}",
"prepare": "husky",
"vercel-install": "./init_submodule.sh && next build",
"update-data": "python3 public/cmumaps-data/scripts/combine_all_floor_plans.py & python3 public/cmumaps-data/scripts/process_graphs.py",
"update-rooms": "python3 public/cmumaps-data/scripts/combine_all_floor_plans.py",
"update-graph": "python3 public/cmumaps-data/scripts/process_graphs.py"
},
"dependencies": {
"@clerk/nextjs": "^5.3.1",
"@datastructures-js/priority-queue": "github:datastructures-js/priority-queue",
"@prisma/client": "^5.11.0",
"@reduxjs/toolkit": "^2.2.6",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"fastest-levenshtein": "^1.0.16",
"framer-motion": "^11.3.21",
"fs": "^0.0.1-security",
"ical": "^0.8.0",
"lodash": "^4.17.21",
"mapkit-react": "^1.14.0",
"netlify-plugin-mapkitjs-token": "^1.2.0",
"next": "^14.2.15",
"posthog-js": "^1.181.0",
"react": "^18.3.1",
"react-collapsible": "^2.10.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-modal-sheet": "^3.1.0",
"react-multi-carousel": "^2.8.5",
"react-redux": "^9.1.2",
"react-toastify": "^10.0.5",
"sharp": "^0.33.4",
"tailwind-merge": "^2.4.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/apple-mapkit-js-browser": "^5.78.0",
"@types/geojson": "^7946.0.14",
"@types/ical": "^0.8.3",
"@types/lodash": "^4.17.7",
"@types/node": "^20.11.24",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.8",
"postcss": "^8.4.35",
"postcss-cli": "^11.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"prisma": "^5.11.0",
"tailwindcss": "^3.4.1",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}