forked from enBloc-org/kindly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.47 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
85
{
"private": true,
"scripts": {
"dev": "next dev",
"preBuild": "npm install",
"build": "next build",
"start": "next start -p 3654",
"lint": "next lint",
"migrate": "supabase db diff -f",
"format:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,css,scss}\"",
"format": "prettier --write .",
"prepare": "husky install",
"start-test": "start-server-and-test dev http://localhost:3000 'cypress run'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@actions/github": "^6.0.0",
"@sentry/nextjs": "^7.83.0",
"@supabase/auth-helpers-nextjs": "^0.8.7",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "^2.38.5",
"autoprefixer": "10.4.15",
"clear": "^0.1.0",
"geist": "^1.0.0",
"nodemailer": "^6.9.7",
"postcss": "^8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.48.2",
"react-icons": "^4.12.0",
"supabase": "^1.176.10",
"tailwindcss": "3.3.3",
"typescript": "5.1.3",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.4.0",
"@iconify-icon/react": "^1.0.8",
"@playwright/browser-chromium": "^1.45.0",
"@storybook/addon-essentials": "^8.1.3",
"@storybook/addon-interactions": "^8.1.4",
"@storybook/addon-links": "^8.1.3",
"@storybook/addon-mdx-gfm": "^8.1.3",
"@storybook/addon-onboarding": "^8.1.3",
"@storybook/blocks": "^8.1.3",
"@storybook/jest": "^0.2.3",
"@storybook/nextjs": "^8.1.3",
"@storybook/react": "^8.1.3",
"@storybook/test": "^8.1.4",
"@storybook/test-runner": "^0.19.0",
"@types/node": "20.3.1",
"@types/nodemailer": "^6.4.14",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.5",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"cypress": "^13.7.2",
"dotenv": "^16.4.5",
"encoding": "^0.1.13",
"eslint": "^8.54.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.8.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"next": "^14.1.4",
"prettier": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.5.11",
"start-server-and-test": "^2.0.3",
"storybook": "^8.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}