-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
123 lines (123 loc) · 3.42 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
122
123
{
"name": "educult",
"version": "0.1.0",
"private": true,
"licence": "MIT",
"dependencies": {
"@capacitor/android": "^2.4.7",
"@capacitor/cli": "^2.4.7",
"@capacitor/core": "^2.4.7",
"@material-ui/core": "^4.9.9",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/pickers": "^3.2.10",
"@material-ui/styles": "^4.9.6",
"@mdx-js/react": "^1.6.22",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"axios": "^0.21.1",
"capacitor-firebase-auth": "^2.3.5",
"clsx": "^1.1.1",
"copy-to-clipboard": "^3.3.1",
"cypress": "^8.0.0",
"dotenv": "^8.2.0",
"draft-js": "^0.11.7",
"firebase": "^7.21.1",
"framer-motion": "^4.1.5",
"history": "^5.0.0",
"immer": "^8.0.1",
"jwt-decode": "^3.1.2",
"moment": "^2.29.1",
"notistack": "^1.0.5",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.1",
"react-draft-wysiwyg": "^1.14.7",
"react-firebaseui": "^4.1.0",
"react-helmet": "^5.2.1",
"react-hook-form": "^7.1.1",
"react-markdown": "^4.3.1",
"react-material-ui-carousel": "^2.2.1",
"react-modal-sheet": "^1.3.2",
"react-paginate": "^7.1.3",
"react-player": "^2.9.0",
"react-redux": "^7.2.0",
"react-reveal": "^1.2.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-router-hash-link": "^2.4.0",
"react-scripts": "^4.0.3",
"react-select": "^3.1.0",
"react-share": "^4.4.0",
"recharts": "^2.0.9",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-form": "^8.3.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"swr": "^0.5.6",
"use-file-upload": "^1.0.9",
"video-react": "^0.14.1",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/node-logger": "^6.1.21",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.1.21",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"mdx-loader": "^3.0.2",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"lint-staged": {
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
}
}