-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.95 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
{
"name": "national-npp",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix --ext .jsx,.js,.tsx,.ts .",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"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 national-npp/development/.env.local | fx .notes > \".env.local\"",
"prepare": "npx husky install"
},
"dependencies": {
"@azure/storage-blob": "^12.8.0",
"@chakra-ui/react": "^1.6.4",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"chakra-ui-steps": "^1.3.0",
"cross-env": "^7.0.3",
"email-templates": "^8.0.8",
"faker": "^5.5.3",
"framer-motion": "^4.1.17",
"mongodb": "^3.6.9",
"mongoose": "^5.12.14",
"next": "12.0.0",
"next-auth": "^3.27.0",
"pug": "^3.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.17.3",
"react-icons": "^4.2.0",
"typescript": "4.3.4",
"uuid": "^8.3.2",
"@types/nodemailer": "^6.4.11",
"@types/email-templates": "^8.0.4",
"@types/react": "17.0.11",
"@types/uuid": "^8.3.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@next/eslint-plugin-next": "^11.1.2",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.29.0",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fx": "^20.0.2",
"husky": "^6.0.0",
"prettier": "^2.3.1"
}
}