-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.68 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
{
"name": "immigration-justice-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:check": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"prettier:check": "npx prettier --check .",
"prettier:fix": "npx prettier --write .",
"tsc": "npx tsc --noEmit"
},
"dependencies": {
"@calblueprint/prettier-config": "^0.0.1",
"@hookform/resolvers": "^3.4.0",
"@radix-ui/react-slot": "^1.0.2",
"@supabase/supabase-js": "^2.36.0",
"@types/node": "20.6.3",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"country-state-city": "^3.2.1",
"dotenv": "^16.3.1",
"eslint-config-next": "13.5.2",
"eslint-import-resolver-typescript": "^3.6.1",
"iso-639-3": "^3.0.1",
"next": "^13.5.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.51.0",
"react-select": "^5.8.0",
"react-select-async-paginate": "^0.7.3",
"styled-components": "^6.0.8",
"validator": "^13.11.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@calblueprint/eslint-config-react": "^0.0.3",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@types/styled-components": "^5.1.29",
"@types/validator": "^13.11.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
}
}