-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.34 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
{
"name": "phs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "DISABLE_ESLINT_PLUGIN=true next build",
"start": "next start",
"lint": "next lint",
"tsc-check": "tsc --noEmit",
"pre-push": "npm run tsc-check && npm run lint && npm run prettier",
"pre-commit": "npm run update-types && (npm run tsc-check || true) && (npm run lint || true) && npm run prettier",
"prettier": "prettier --write .",
"update-types": "npx supabase gen types typescript --project-id 'qkkuacqtcsfjbnzmxmhk' > src/types/supabase.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@next/env": "^14.1.0",
"@supabase/supabase-js": "^2.38.0",
"axios": "^1.5.1",
"bootstrap": "^5.3.2",
"crypto": "^1.0.1",
"html5-qrcode": "^2.3.8",
"i": "^0.3.7",
"leaflet": "^1.9.4",
"moment": "^2.30.1",
"next": "^14.2.1",
"node": "^21.7.1",
"react": "^18.2.0",
"react-bootstrap": "^2.9.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-leaflet": "^4.2.1",
"react-responsive-carousel": "^3.2.23",
"slick-carousel": "^1.8.1",
"supabase": "^1.167.4"
},
"devDependencies": {
"@calblueprint/eslint-config-react": "^0.0.3",
"@calblueprint/prettier-config": "^0.0.1",
"@types/leaflet": "^1.9.6",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "latest",
"daisyui": "^3.9.4",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "latest",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "latest",
"prettier": "^2.8.8",
"tailwindcss": "latest",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix",
"*.md": "markdownlint"
},
"ignore": [
"node_modules",
"dist",
"package-lock.json",
"src/app/testing/page.tsx"
]
}