-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.24 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
{
"name": "radon-v3",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@next/eslint-plugin-next": "^11.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/events": "^3.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.6.1",
"@types/react": "^17.0.17",
"@types/react-dom": "^17.0.9",
"@types/react-infinite-scroller": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"jwt-decode": "^3.1.2",
"material-ui-dropzone": "^3.5.0",
"next": "11.1.0",
"next-auth": "^3.29.0",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-device-detect": "^1.17.0",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-google-login": "^5.2.2",
"react-icons": "^4.2.0",
"react-infinite-scroller": "^1.2.4",
"react-markdown": "^7.0.0",
"react-query": "^3.19.6",
"react-swipeable": "^6.1.2",
"sharp": "^0.29.1",
"zustand": "^3.5.8"
},
"scripts": {
"dev": "next dev -p 8000",
"build": "next build",
"start": "next start -p 8000"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}