forked from shorn/zinc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "zinc-client",
"version": "0.0.1",
"private": true,
"proxy": "https://d10mxtejtt0tmd.cloudfront.net",
"scripts": {
"start-dev": "set REACT_APP_ZINC_ENV=dev && react-scripts start",
"build-prd": "set REACT_APP_ZINC_ENV=prd && react-scripts build",
"test": "react-scripts test",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"audit": "npm audit"
},
"dependencies": {
"zod": "3.15.1",
"source-map-explorer": "2.5.2",
"jwt-decode": "3.1.2",
"@mui/material": "5.8.0",
"@mui/icons-material": "5.8.0",
"@emotion/styled": "11.8.1",
"@emotion/react": "11.9.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-scripts": "5.0.1",
"typescript": "4.6.3",
"amazon-cognito-identity-js": "5.2.8"
},
"devDependencies": {
"@types/jest": "26.0.20",
"@types/node": "14.14.31",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"axios": "0.21.1"
},
"eslintConfig": {
"extends": [
"react-app"
],
"rules": {
"dot-location": "off",
"@typescript-eslint/no-unused-vars": "off"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}