-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.01 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@bitswired-web/webapp",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"postbuild": "next-sitemap",
"export": "next export",
"start": "next start",
"type-check": "tsc",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"format:check": "prettier --check ./src",
"format:fix": "prettier --write ./src",
"lint:check": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"type:check": "tsc -p tsconfig.json",
"hook:check": "yarn type:check && yarn lint:check && yarn format:check",
"hook:fix": "yarn lint:fix && yarn format:fix"
},
"dependencies": {
"@chakra-ui/portal": "^1.2.9",
"@chakra-ui/react": "^1.6.4",
"@chakra-ui/theme-tools": "^1.1.7",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@hcaptcha/react-hcaptcha": "^0.3.6",
"@joi/date": "^2.1.0",
"@mdx-js/loader": "2.0.0-rc.1",
"@mdx-js/react": "2.0.0-rc.1",
"@next/mdx": "^12.0.3",
"@visx/curve": "^2.1.0",
"@visx/legend": "^2.1.0",
"@visx/responsive": "^2.1.1",
"@visx/xychart": "^2.1.1",
"axios": "^0.21.1",
"framer-motion": "^4.1.17",
"glob": "^7.2.0",
"glob-promise": "^4.2.2",
"joi": "^17.4.2",
"lodash": "^4.17.21",
"next": "^12.0.2",
"next-compose-plugins": "^2.2.1",
"next-seo": "^4.26.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^7.9.0",
"react-icons": "^4.2.0",
"react-intersection-observer": "^8.32.1",
"react-lazyload": "^3.2.0",
"react-query": "^3.18.1",
"react-schemaorg": "^2.0.0",
"react-spring": "^9.2.4",
"react-syntax-highlighter": "^15.4.3",
"remark-gfm": "^1.0.0",
"schema-dts": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@next/bundle-analyzer": "^11.0.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"@types/lodash": "^4.14.170",
"@types/node": "^16.3.1",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-lazyload": "^3.1.1",
"@types/react-syntax-highlighter": "^13.5.1",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-loader": "^8.2.2",
"babel-plugin-react-require": "^3.1.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "*",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.8.0-125",
"eslint-plugin-unicorn": "^33.0.1",
"eslint-plugin-unused-imports": "^1.1.1",
"next-sitemap": "^1.6.164",
"prettier": "^2.4.1",
"storybook-addon-next-router": "^2.0.4",
"typescript": "^4.3.2"
},
"license": "MIT"
}