-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.96 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.96 KB
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
{
"name": "myconfigstore",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix '**/*.{ts,tsx}'",
"prettier": "prettier -w .",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint . --fix"
],
"**/*.{js,ts,tsx,json}": [
"prettier . -w"
]
},
"dependencies": {
"@chakra-ui/react": "1.6.3",
"@emotion/react": "11",
"@emotion/styled": "11",
"@fontsource/muli": "^4.1.0",
"@fontsource/poppins": "^4.4.5",
"@types/numeral": "^2.0.1",
"axios": "^0.21.1",
"chakra-ui-markdown-renderer": "^3.0.1",
"date-fns": "^2.22.1",
"formik": "^2.2.9",
"framer-motion": "4",
"lodash": "^4.17.21",
"lottie-react": "^2.1.0",
"next": "10.2.3",
"next-api-middleware": "^0.7.1",
"next-auth": "^3.26.1",
"next-seo": "^4.26.0",
"nextjs-cors": "^1.0.5",
"numeral": "^2.0.6",
"raw-loader": "^4.0.2",
"razorpay-typescript": "^1.0.12",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"react-intersection-observer": "^8.32.0",
"react-lazyload": "^3.2.0",
"react-markdown": "^6.0.2",
"react-query": "^3.17.0",
"request": "^2.88.2",
"slugify": "^1.5.3",
"string-strip-html": "^8.3.0",
"stripe": "^8.156.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/node": "15.12.2",
"@types/react": "17.0.11",
"@types/react-lazyload": "^3.1.0",
"@typescript-eslint/eslint-plugin": "4.26.1",
"@typescript-eslint/parser": "4.26.1",
"eslint": "5.16.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-path-alias": "1.0.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "2.3.1",
"typescript": "4.3.2"
}
}