-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 3.86 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "twoopstrackerui",
"version": "0.1.0",
"private": true,
"scripts": {
"cms": "netlify-cms-proxy-server",
"dev": "next dev",
"format": "yarn prettier --write --ignore-path './.gitignore' \"**/*.+(json|md|yml)\" './'",
"format-staged": "yarn prettier --write",
"lint": "yarn eslint --fix --ignore-path './.gitignore' './'",
"lint-staged-optimal-imports": "yarn jscodeshift -t node_modules/@material-ui/codemod/lib/v4.0.0/optimal-imports.js",
"lint-staged-top-level-imports": "yarn jscodeshift -t node_modules/@material-ui/codemod/lib/v4.0.0/top-level-imports.js",
"lint-staged": "yarn eslint --fix --ext '.js,.json,.md,.yml'",
"build": "next build",
"start": "next start",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"dependencies": {
"@commons-ui/core": "^0.1.0-alpha.6",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/utils": "^4.11.2",
"@svgr/webpack": "^6.1.1",
"aws-sdk": "^2.1040.0",
"clsx": "^1.1.1",
"date-fns": "^2.25.0",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"js-yaml": "^4.1.0",
"jwt-decode": "^3.1.2",
"markdown-it": "^12.3.2",
"markdown-it-link-attributes": "^4.0.0",
"nanoid": "^3.3.8",
"next": "^12.1.0",
"next-auth": "^4.24.5",
"next-seo": "^5.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^12.0.2",
"react-lines-ellipsis": "^0.15.0",
"react-share": "^4.4.0",
"sharp": "^0.32.6",
"simple-oauth2": "^4.2.0",
"swr": "^1.0.1",
"vega": "^5.23.0",
"vega-embed": "^6.20.0",
"vega-lite": "^5.1.1",
"webpack": "^5.94.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.16.0",
"@material-ui/codemod": "^4.5.0",
"@next/eslint-plugin-next": "^12.0.7",
"@storybook/addon-actions": "^6.4.14",
"@storybook/addon-essentials": "^6.4.14",
"@storybook/addon-links": "^6.4.14",
"@storybook/addons": "^6.4.14",
"@storybook/builder-webpack5": "^6.4.14",
"@storybook/client-api": "^6.4.14",
"@storybook/components": "^6.4.14",
"@storybook/core-events": "^6.4.14",
"@storybook/manager-webpack5": "^6.4.14",
"@storybook/react": "^6.4.14",
"@storybook/theming": "^6.4.14",
"@types/react": "^17.0.3",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-markdown": "^2.2.0",
"eslint-plugin-module-resolver": "^1.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"frontmatter-markdown-loader": "^3.6.3",
"husky": "^7.0.0",
"jscodeshift": "^0.13.0",
"lint-staged": "^12.1.2",
"netlify-cms-proxy-server": "^1.3.22",
"prettier": "^2.2.1",
"storybook-addon-material-ui": "^0.9.0-alpha.24",
"storybook-addon-next-router": "^3.0.8",
"svg-url-loader": "^7.1.1",
"typescript": "^4.2.4"
},
"browserslist": [
"defaults"
],
"lint-staged": {
"*.js": [
"yarn lint-staged-optimal-imports",
"yarn lint-staged-top-level-imports"
],
"*.{js,json,md}": [
"yarn lint-staged"
],
"*.{json,md,yml}": [
"yarn format-staged"
]
},
"engines": {
"node": "20.x",
"yarn": "1"
},
"packageManager": "[email protected]"
}