generated from edenia/website-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.5 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
{
"name": "eden-smart-proxy",
"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"
},
"dependencies": {
"@apollo/client": "^3.7.0",
"@edenia/ui-kit": "^0.4.3",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@google-cloud/recaptcha-enterprise": "^2.4.0",
"@mui/icons-material": "^5.10.3",
"@mui/lab": "^5.0.0-alpha.97",
"@mui/material": "^5.10.3",
"@mui/styles": "^5.10.3",
"@mui/x-date-pickers": "^5.0.0",
"@types/react-swipeable-views-utils": "^0.13.3",
"@types/yup": "^0.29.13",
"apollo-link-token-refresh": "^0.4.0",
"atomicassets": "^1.5.0",
"clsx": "^1.1.1",
"date-fns": "^2.25.0",
"eosjs-api": "^7.0.4",
"formik": "^2.2.9",
"graphql": "^16.6.0",
"jwt-decode": "^3.1.2",
"next": "^12.2.5",
"next-i18next": "^9.1.0",
"next-seo": "^4.28.1",
"node-fetch": "^2.6.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-recaptcha-v3": "^1.9.7",
"react-icons": "^4.6.0",
"react-router-dom": "^6.4.2",
"react-swipeable-views": "^0.14.0",
"react-swipeable-views-utils": "^0.14.0",
"react-tweet-embed": "^2.0.0",
"recharts": "^2.3.2",
"sharp": "^0.29.3",
"subscriptions-transport-ws": "^0.11.0",
"ual-anchor": "^1.3.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/gtag.js": "^0.0.8",
"@types/react": "17.0.27",
"@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": "11.1.2",
"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",
"lint-staged": "^11.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"typescript": "4.4.3"
}
}