-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
67 lines (67 loc) · 1.73 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
{
"name": "walking-pal-web",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettycheck": "prettier --check .",
"prettify": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mdx-js/loader": "^2.2.1",
"@mdx-js/react": "^2.2.1",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.96",
"@mui/material": "^5.9.3",
"@next/mdx": "^13.1.6",
"@types/mdx": "^2.0.3",
"@vercel/analytics": "^0.1.8",
"axios": "^0.27.2",
"deep-email-validator": "^0.1.21",
"firebase": "^9.9.2",
"firebase-admin": "^11.0.1",
"framer-motion": "^4",
"lodash": "^4.17.21",
"next": "^12.2.4",
"nextjs-progressbar": "^0.0.16",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-google-recaptcha": "^2.1.0",
"react-intersection-observer": "^9.4.0",
"react-player": "^2.10.1",
"react-scroll-parallax": "^3.3.1",
"react-useanimations": "^2.0.8",
"sass": "^1.54.3",
"swiper": "^8.4.2",
"yup": "^0.32.11",
"yup-phone": "^1.3.2",
"zod": "^3.19.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@svgr/webpack": "^6.3.1",
"@types/node": "^18.6.4",
"@types/react": "^18.0.16",
"@types/react-dom": "^18.0.6",
"@types/react-google-recaptcha": "^2.1.5",
"eslint": "^8.21.0",
"eslint-config-next": "^12.2.4",
"husky": "^8.0.1",
"lint-staged": ">=10",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,scss,md}": "prettier --write"
}
}