forked from digitalaidseattle/seattle-humane-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.42 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
{
"name": "seattle-humane",
"version": "9.0.1-SNAPSHOT",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"lint": "next lint",
"format": "prettier --write \"**/**/*.{js,ts,tsx}\"",
"test": "jest",
"db-restart": "npx supabase stop --no-backup && npx supabase start",
"gen-db-types": "npx supabase gen types --lang typescript --local > supabase/database.types.ts",
"gen-db-migration": "npx supabase db diff",
"gen-seed-data": "npx --yes tsx supabase/seed.ts > supabase/seed.sql",
"supabase-start": "yarn gen-seed-data && npx supabase start"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@supabase/auth-helpers-nextjs": "^0.8.7",
"@supabase/supabase-js": "^2.39.6",
"chart.js": "^4.2.1",
"cliui": "^8.0.1",
"eslint-config-airbnb-typescript": "^17.1.0",
"next": "^13.5.4",
"primeflex": "^3.3.0",
"primeicons": "^6.0.1",
"primereact": "^9.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "^6.22.3",
"react-transition-group": "^4.4.5",
"swr": "^2.2.5",
"ts-jest": "^29.1.2",
"uuid": "^9.0.1"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.2.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.1.2",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "20.14.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dotenv": "^16.4.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-path-alias": "^2.1.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next-router-mock": "^0.9.13",
"prettier": "2.8.4",
"react-test-renderer": "^18.2.0",
"sass": "^1.58.3",
"ts-jest": "^29.1.2",
"typescript": "5.5.2"
}
}