-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.7 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix .",
"lint:format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"secrets:logout": "(bw logout || exit 0)",
"secrets:sync": "bw sync && bw get item 2daa4e76-1097-4b9b-8956-ac580138e0f0 | fx .notes > \".env\"",
"secrets": "npm run secrets:logout && cross-env-shell BW_SESSION=`bw login benholmes@hack4impact.org --raw` \"npm run secrets:sync\""
},
"dependencies": {
"@contentful/rich-text-html-renderer": "^14.1.1",
"@reach/dialog": "^0.10.5",
"@reach/disclosure": "^0.11.2",
"@reach/tabs": "^0.11.2",
"@reach/visually-hidden": "^0.11.1",
"classnames": "^2.2.6",
"framer-motion": "^2.7.6",
"next": "9.5.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-icons": "^3.10.0",
"react-intersection-observer": "^8.29.0",
"sass": "^1.26.10"
},
"devDependencies": {
"@bitwarden/cli": "^1.12.1",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"fx": "^20.0.2",
"prettier": "^1.19.1",
"typescript": "^3.9.7"
}
}