-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.4 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
{
"name": "edenia-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"clean": "rm -rf node_modules && yarn && yarn dev",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(ts|tsx|json)\"",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"check-types": "tsc",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"lint:fix": "eslint --fix --ignore-path .gitignore --ext .js,.ts,.tsx .",
"validate": "npm-run-all --parallel check-format check-types lint build",
"prepare": "husky install",
"pre-commit-lint": "yarn validate && yarn lint-staged",
"test": "jest --watch"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@google-cloud/recaptcha-enterprise": "^2.5.0",
"@mui/icons-material": "^5.11.11",
"@mui/lab": "^5.0.0-alpha.124",
"@mui/material": "^5.11.15",
"@mui/styles": "^5.11.13",
"@mui/x-date-pickers": "^6.0.4",
"@types/react-dom": "^18.2.18",
"@types/yup": "^0.29.13",
"clsx": "^1.1.1",
"date-fns": "^2.25.0",
"formik": "^2.2.9",
"next": "^14.1.0",
"next-intl": "^3.5.2",
"next-seo": "^4.28.1",
"node-fetch": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-recaptcha-v3": "^1.9.7",
"react-share": "^4.4.0",
"react-swipeable-views": "^0.14.0",
"react-swipeable-views-utils": "^0.14.0",
"remark": "^14.0.2",
"remark-html": "^15.0.1",
"schema-dts": "^1.1.2",
"sharp": "^0.33.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/gtag.js": "^0.0.12",
"@types/react": "^18.2.48",
"@types/react-swipeable-views": "^0.13.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "7.32.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^11.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"typescript": "^4.5.2"
},
"packageManager": "[email protected]"
}