-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
123 lines (123 loc) · 3.98 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "volunteer-and-event-management-platform",
"version": "2.0.0",
"description": "A multi-tenant platform for nonprofits to manage volunteer and events.",
"author": "Bits of Good <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GTBitsOfGood/helping-mamas.git"
},
"bugs": {
"url": "https://github.com/GTBitsOfGood/helping-mamas/issues"
},
"homepage": "https://github.com/GTBitsOfGood/helping-mamas#readme",
"scripts": {
"dev": "next -p 3000",
"build": "next build",
"start": "next build && next start",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix",
"format": "prettier \"**/*.{js,jsx,ts,tsx}\" --write",
"format:check": "prettier \"**/*.{js,jsx,ts,tsx}\" -l",
"check": "npm run format; npm run lint:fix;",
"secrets:linux": "echo Enter Bitwarden Password: && read BW_PASSWORD && (bw logout || exit 0) && export BW_SESSION=`bw login [email protected] $BW_PASSWORD --raw` && yarn secrets:get",
"secrets:windows": "set /p BW_PASSWORD=Enter Bitwarden Password:&& (bw logout || VER>NUL) && yarn secrets:login",
"secrets:login": "FOR /F %a IN ('bw login [email protected] %BW_PASSWORD% --raw') DO SET BW_SESSION=%a && yarn secrets:get",
"secrets:get": "bw sync && bw get item 3134ef9e-d092-47a2-8ee8-b0a400245b5d | fx .notes > \".env.local\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint"
],
"*.{js,jsx,css}": [
"prettier --write"
]
},
"dependencies": {
"@heroicons/react": "^2.0.16",
"@next-auth/mongodb-adapter": "^1.0.1",
"@types/jest": "^29.4.0",
"@types/react-dom": "^18.0.11",
"acorn": "^8.8.2",
"apexcharts": "^3.37.1",
"autoprefixer": "^10.4.13",
"axios": "^0.24.0",
"bcrypt": "^5.1.0",
"bootstrap": "^5.2.1",
"classnames": "^2.3.1",
"css-loader": "^6.7.3",
"date-fns": "^2.28.0",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"flowbite": "^1.6.3",
"flowbite-react": "^0.3.8",
"focus-visible": "^5.2.0",
"formik": "^2.2.9",
"mailersend": "^1.4.5",
"mongodb": "^4.3.1",
"mongoose": "^7.0.3",
"multer": "^1.4.4",
"next": "^12.0.1",
"next-auth": "^4.10.3",
"next-connect": "^0.12.2",
"next-images": "^1.8.1",
"node": "^16.14.0",
"normalize.css": "^8.0.1",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"prettier-plugin-jsdoc": "^0.4.2",
"prop-types": "^15.7.2",
"qrcode.react": "^3.1.0",
"quill": "^1.3.7",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-calendar": "^3.7.0",
"react-csv": "^2.2.2",
"react-dom": "^18.2.0",
"react-dropdown": "^1.9.2",
"react-quill": "^2.0.0",
"react-search-box": "^2.2.1",
"reactstrap": "^6.4.0",
"styled-components": "^5.3.3",
"tailwindcss": "^3.2.7",
"yup": "^0.32.11",
"zod": "^3.21.4",
"zod-formik-adapter": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@bitwarden/cli": "^2023.9.1",
"@types/bcrypt": "^5.0.0",
"@types/node": "^18.14.2",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"babel-plugin-styled-components": "^2.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tsdoc": "^0.2.17",
"fx": "^20.0.2",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"prettier": "^2.8.4",
"prettier-eslint": "^12.0.0",
"prettier-plugin-tailwindcss": "^0.2.3",
"sass": "^1.54.8",
"typescript": "^5.0.2",
"vercel": "^23.1.2"
}
}