-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.14 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
{
"name": "project-1-web-application-design-group1-flask-and-furious",
"version": "0.1.0",
"private": true,
"scripts": {
"flask-dev": "python -m flask --app api/api/index run -p 5328 --debug",
"next-dev": "next dev",
"dev": "concurrently \"pnpm run next-dev\" \"pnpm run flask-dev\"",
"build": "next build",
"start": "next start",
"flask-lint": "python -m ruff check .",
"next-lint": "next lint",
"lint": "pnpm next-lint && pnpm flask-lint",
"prepare": "husky install",
"next-test": "jest",
"flask-test": "pytest",
"test": "pnpm next-test && pnpm flask-test"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@radix-ui/react-toast": "^1.1.5",
"@nextui-org/react": "^2.2.9",
"@mapbox/search-js-core": "1.0.0-beta.18",
"@mapbox/search-js-react": "1.0.0-beta.18",
"@supabase/auth-helpers-nextjs": "^0.8.1",
"@supabase/gotrue-js": "^2.55.0",
"@supabase/supabase-js": "^2.37.0",
"@types/mapbox-gl": "^2.7.15",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"concurrently": "^8.2.1",
"lucide-react": "^0.292.0",
"framer-motion": "^10.16.4",
"dotenv": "^16.3.1",
"mapbox-gl": "3.0.0-beta.1",
"next": "^13",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"autoprefixer": "^10",
"daisyui": "^3.9.3",
"eslint": "^8.50.0",
"eslint-config-next": "^13",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"postcss": "^8",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.5",
"tailwindcss": "^3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}