forked from GTBitsOfGood/VolunTrack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.56 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.56 KB
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
{
"name": "nextjs-starter",
"version": "2.0.0",
"description": "A NextJS starter with API routes using MongoDB",
"author": "Bits of Good <hello@bitsofgood.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GTBitsOfGood/nextjs-starter.git"
},
"bugs": {
"url": "https://github.com/GTBitsOfGood/nextjs-starter/issues"
},
"homepage": "https://github.com/GTBitsOfGood/nextjs-starter#readme",
"scripts": {
"dev": "next -p 3000",
"build": "next build",
"start": "next build && next start",
"lint": "eslint \"**/*.{js,jsx}\"",
"lint:fix": "eslint \"**/*.{js,jsx}\" --fix",
"format": "prettier \"**/*.{js,jsx}\" --write",
"format:check": "prettier \"**/*.{js,jsx}\" -l",
"secrets": "npm run secrets:logout && cross-env-shell BW_SESSION=`bw login product@bitsofgood.org --raw` \"npm run secrets:sync\"",
"secrets:logout": "(bw logout || exit 0)",
"secrets:login": "bw login product@bitsofgood.org",
"secrets:sync": "bw sync && bw get item b8594f56-00eb-4bbd-a446-ad9c0149ecc2 | fx .notes > \".env\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint"
],
"*.{js,jsx,css}": [
"prettier --write"
]
},
"dependencies": {
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.1.3",
"clsx": "^1.1.1",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"focus-visible": "^5.2.0",
"formik": "^2.2.9",
"isomorphic-unfetch": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongodb": "^4.0.0",
"mongoose": "^5.13.2",
"next": "^11.0.1",
"next-images": "^1.8.1",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-button": "^0.7.2",
"react-google-login": "^5.2.2",
"reactstrap": "^6.4.0",
"styled-components": "^5.3.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@bitwarden/cli": "^1.17.1",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^2.0.2",
"cross-env": "^7.0.3",
"eslint": "^7.30.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",
"fx": "^20.0.2",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"prettier": "2.3.2",
"prettier-eslint": "^12.0.0",
"vercel": "^23.1.2"
}
}