-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
84 lines (84 loc) · 2.74 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "8by8-challenge",
"version": "0.1.0",
"private": true,
"scripts": {
"supabase-dev:start": "supabase start",
"supabase-dev:stop": "supabase stop --project-id 8by8-challenge",
"supabase-test:start": "node scripts/link-or-copy-migrations.js && cd src/__tests__ && supabase start",
"supabase-test:stop": "cd src/__tests__ && supabase stop --project-id 8by8-challenge-test --no-backup",
"kv:start": "node scripts/kv start",
"kv:stop": "node scripts/kv stop",
"dev": "next dev",
"build": "cross-env APP_ENV=production next build",
"build:local": "next build",
"start": "next start",
"test": "jest --no-watch --runInBand",
"test:ci": "jest --ci --runInBand -u",
"lint": "next lint",
"format": "prettier --write \"**/*.+(js|ts|tsx|json)\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"create-cryptokey": "node scripts/create-crypto-key.js"
},
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"@supabase/ssr": "^0.4.0",
"@supabase/supabase-js": "^2.44.0",
"@upstash/ratelimit": "^2.0.3",
"@vercel/kv": "^3.0.0",
"fully-formed": "^1.2.2",
"luxon": "^3.4.4",
"next": "^14.2.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.0.1",
"react-share": "^5.1.0",
"react-turnstile": "^1.1.3",
"server-only": "^0.0.1",
"undecorated-di": "^2.0.2",
"zip-state": "^1.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@chromatic-com/storybook": "^2.0.2",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/addon-onboarding": "^8.3.5",
"@storybook/blocks": "^8.3.5",
"@storybook/nextjs": "^8.3.5",
"@storybook/react": "^8.3.5",
"@storybook/test": "^8.3.5",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.4.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"builder-pattern": "^2.2.0",
"chalk": "^4.1.2",
"copy-paste": "^1.5.3",
"core-js": "^3.37.0",
"cross-env": "^7.0.3",
"docker-compose": "^1.1.0",
"eslint": "^8",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.9.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-location-mock": "^2.0.0",
"next-router-mock": "^0.9.13",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"storybook": "^8.3.5",
"supabase": "^1.187.10",
"typescript": "^5",
"uuid": "^10.0.0"
}
}