-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.84 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
{
"name": "brain-exercise-initiative-analytics",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"ngrok": "ngrok http 3030",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"prepare": "husky install",
"secrets:linux": "echo Enter Bitwarden Password: && read BW_PASSWORD && (bw logout || exit 0) && export BW_SESSION=`bw login [email protected] $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 [email protected] %BW_PASSWORD% --raw') DO SET BW_SESSION=%a && npm run secrets:get",
"secrets:get": "bw sync && bw get item 5047b46d-6f28-464e-9a0a-b0950116d2b2 | fx .notes > \".env.development.local\""
},
"dependencies": {
"@azure/storage-blob": "^12.17.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/icons-material": "^5.14.13",
"@mui/material": "^5.14.13",
"@mui/x-date-pickers": "^6.18.1",
"@reduxjs/toolkit": "^1.9.7",
"axios": "^1.5.1",
"cookies-next": "^4.0.0",
"cors": "^2.8.5",
"country-state-city": "^3.2.1",
"d3": "^7.8.5",
"dayjs": "^1.11.10",
"email-templates": "^11.1.1",
"encoding": "^0.1.13",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"firebase": "^10.5.0",
"firebase-admin": "^11.11.0",
"jose": "^5.2.4",
"mongo-dot-notation": "^3.1.0",
"mongoose": "^7.5.0",
"next": "^14.0.2",
"nodemailer": "^6.9.8",
"pug": "^3.0.2",
"react": "18.2.0",
"react-calendar": "^4.6.1",
"react-dom": "18.2.0",
"react-redux": "^8.1.3",
"react-switch": "^7.0.0",
"redux-persist": "^6.0.0",
"sass": "^1.69.5",
"solid-icons": "^1.0.12",
"solid-js": "^1.8.1",
"typescript": "5.2.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@bitwarden/cli": "^2024.1.0",
"@types/d3": "^7.4.1",
"@types/email-templates": "^10.0.4",
"@types/node": "^20.11.5",
"@types/nodemailer": "^6.4.14",
"@types/pug": "^2.0.10",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"fx": "^31.0.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"ngrok": "^5.0.0-beta.2",
"prettier": "^3.2.5"
}
}