-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
70 lines (70 loc) · 2.14 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
{
"name": "coders-card",
"private": true,
"description": "",
"version": "0.1.0",
"author": "CodersCrew",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"build:analyze": "cross-env ANALYZE=true yarn build",
"start": "next start",
"export": "next export",
"admin": "npx netlify-cms-proxy-server",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook -s ./public",
"type-check": "tsc --noEmit",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"@material-ui/core": "4.11.4",
"clsx": "1.1.1",
"dayjs": "1.10.4",
"marked": "2.0.3",
"next": "10.2.0",
"preact": "10.5.13",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-feather": "2.0.9",
"react-hook-form": "7.5.2",
"react-svg": "13.0.4",
"react-use": "17.2.4"
},
"devDependencies": {
"@babel/core": "7.14.2",
"@next/bundle-analyzer": "10.2.0",
"@storybook/addon-a11y": "6.2.9",
"@storybook/addon-actions": "6.2.9",
"@storybook/addon-essentials": "6.2.9",
"@storybook/addon-links": "6.2.9",
"@storybook/builder-webpack5": "6.2.9",
"@storybook/react": "6.2.9",
"@types/marked": "2.0.2",
"@types/node": "15.0.2",
"@types/react": "17.0.5",
"@types/react-dom": "17.0.4",
"@types/yup": "0.29.11",
"@typescript-eslint/eslint-plugin": "4.23.0",
"@typescript-eslint/parser": "4.23.0",
"babel-loader": "8.2.2",
"cross-env": "7.0.3",
"eslint": "7.26.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.3.0",
"eslint-config-react": "1.1.7",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"frontmatter-markdown-loader": "3.6.2",
"prettier": "2.3.0",
"storybook-addon-next-router": "2.0.4",
"tsconfig-paths-webpack-plugin": "3.5.1",
"typescript": "4.2.4"
}
}