-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 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
{
"name": "fair_districts",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"prebuild": "npx prisma generate",
"ci:test": "jest --ci --passWithNoTests",
"prisma:generate": "npx prisma generate",
"secrets": "npm run secrets:logout && cross-env-shell BW_SESSION=`bw login [email protected] --raw` \"npm run secrets:sync\"",
"secrets:logout": "(bw logout || exit 0)",
"secrets:login": "bw login [email protected]",
"secrets:sync": "bw sync && bw get item fair-districts-ga/development/.env | fx .notes > \".env\""
},
"dependencies": {
"@azure/storage-blob": "^12.9.0",
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.8.1",
"@ctrl/tinycolor": "^3.4.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@next-auth/prisma-adapter": "^1.0.1",
"@prisma/client": "^3.8.1",
"@reach/alert": "^0.16.0",
"autoprefixer": "^10.4.2",
"axios": "^0.25.0",
"bootstrap": "^5.1.3",
"buffer": "^6.0.3",
"chakra-react-select": "^3.0.6",
"dayjs": "^1.11.0",
"dotenv": "^14.2.0",
"formik": "^2.2.9",
"framer-motion": "^5.6.0",
"next": "12.0.8",
"next-auth": "^4.1.2",
"node_module": "0.0.0",
"node-fetch": "^3.2.0",
"nodemailer": "^6.7.2",
"path": "^0.12.7",
"postcss": "^8.4.6",
"react": "^17.0.2",
"react-bootstrap": "^2.1.2",
"react-datepicker": "^4.6.0",
"react-dom": "17.0.2",
"react-focus-lock": "^2.8.1",
"react-icons": "^4.3.1",
"react-if": "^4.1.1",
"react-remove-scroll": "^2.4.4",
"react-table": "^7.7.0",
"to-fast-properties": "^4.0.0"
},
"devDependencies": {
"eslint": "8.7.0",
"eslint-config-next": "12.0.8",
"jest": "^27.4.7",
"prisma": "^5.3.1",
"tailwindcss": "^3.0.18",
"vercel": "^23.1.2"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}