-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.37 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
{
"name": "trees-knoxville",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"lint": "next lint",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"lint:eslint": "eslint '**/*.{tsx,ts,js,jsx,json}' --fix",
"secrets": "npm run secrets:logout && cross-env-shell BW_SESSION=`bw login treesknoxwebsite@gmail.com --passwordfile .env.credentials --raw` \"npm run secrets:sync\"",
"secrets:logout": "(bw logout || exit 0)",
"secrets:login": "bw login treesknoxwebsite@gmail.com --passwordfile .env.credentials",
"secrets:sync": "bw sync && bw get item 62e79ac9-098d-4e43-813b-adcf00e6e901 | fx .notes > \".env.local\""
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.7.0",
"@types/enzyme": "^3.10.10",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/formidable": "^2.0.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"auth0-react": "^3.1.0",
"contentful-management": "^7.45.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tsc": "^2.0.0",
"formidable": "^2.0.1",
"generate-password": "^1.7.0",
"google-map-react": "^2.1.10",
"google-maps-react": "^2.0.6",
"husky": "^7.0.2",
"jest": "^27.2.2",
"lint-staged": "^11.1.2",
"mongoose": "^6.0.12",
"next": "11.1.2",
"prettier": "^2.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-transition-group": "^4.4.2",
"sass": "^1.42.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1"
},
"devDependencies": {
"@bitwarden/cli": "^1.19.0",
"@types/google-map-react": "^2.1.3",
"@types/react": "17.0.24",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"fx": "^20.0.2",
"typescript": "4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx,ts,js,jsx,json}": [
"eslint --fix --plugin tsc --rule 'tsc/config: [2, {configFile: \"./tsconfig.json\"}]'"
]
}
}