-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest",
"test:ci": "vitest --watch=false",
"typecheck": "tsc",
"lint": "next lint",
"prepare": "husky install",
"cypress": "cypress open",
"cypress:ci": "cypress run"
},
"dependencies": {
"@hookform/resolvers": "^2.9.5",
"@sendgrid/mail": "^7.7.0",
"airtable": "^0.11.4",
"next": "latest",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-hook-form": "^7.33.1",
"react-responsive-carousel": "^3.2.23",
"react-textarea-autosize": "^8.3.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/cypress": "^8.0.3",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.2",
"@types/node": "17.0.35",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.5",
"@vitejs/plugin-react": "^1.3.2",
"autoprefixer": "^10.4.7",
"classnames": "^2.3.1",
"cypress": "^10.3.0",
"eslint": "^8.19.0",
"eslint-config-next": "13.1.1",
"eslint-plugin-testing-library": "^5.5.1",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.2",
"typescript": "4.7.2",
"vitest": "^0.17.0"
}
}