-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.97 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
{
"name": "canine-assistants",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"secrets:linux": "echo Enter Bitwarden Password: && read BW_PASSWORD && (bw logout || exit 0) && export BW_SESSION=`bw login product@bitsofgood.org $BW_PASSWORD --raw` && npm run secrets:get",
"secrets:windows": "set /p BW_PASSWORD=Enter Bitwarden Password:&& (bw logout || VER>NUL) && npm run secrets:login",
"secrets:login": "FOR /F %a IN ('bw login product@bitsofgood.org %BW_PASSWORD% --raw') DO SET BW_SESSION=%a && npm run secrets:get",
"secrets:get": "bw sync && bw get item 9fcf4612-f7d3-4fca-986d-b06000148a5a | fx .notes > \".env.development.local\""
},
"dependencies": {
"@getbrevo/brevo": "^2.0.0-beta.4",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.3.2",
"@next-auth/mongodb-adapter": "^1.1.3",
"@tailwindcss/forms": "^0.5.7",
"autoprefixer": "10.4.15",
"backblaze-b2": "^1.7.0",
"bcrypt": "^5.1.1",
"eslint": "8.47.0",
"eslint-config-next": "13.4.13",
"formidable": "^3.5.1",
"fs": "^0.0.1-security",
"mongodb": "^5.9.0",
"mongoose": "^7.4.3",
"next": "13.4.19",
"next-auth": "^4.22.1",
"postcss": "8.4.27",
"react": "18.2.0",
"react-datepicker": "^4.21.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.50.0",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.17.0",
"react-select": "^5.7.7",
"react-tooltip": "^5.26.2",
"swr": "^2.2.2",
"tailwindcss": "3.3.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@bitwarden/cli": "^2023.7.0",
"@netlify/plugin-nextjs": "^4.32.2",
"eslint-config-prettier": "^9.0.0",
"fx": "^28.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.1"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}