-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "cabbage-app",
"version": "1.0.0",
"private": true,
"dependencies": {
"source-map-explorer": "2.5.2",
"@mui/material": "5.2.8",
"@mui/icons-material": "5.2.5",
"@emotion/styled": "11.6.0",
"@emotion/react": "11.7.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-scripts": "4.0.3",
"typescript": "4.5.4",
"@supabase/supabase-js": "1.29.1",
"@sentry/browser": "5.30.0"
},
"devDependencies": {
"@types/jest": "26.0.20",
"@types/node": "14.14.31",
"@types/react": "17.0.37",
"@types/react-dom": "17.0.11",
"openapi-typescript": "2.4.2",
"axios": "0.21.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"serve": "react-scripts build && serve -s build",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"audit": "npm audit",
"get-definitions": "node app-build/get-definitions",
"generate-types": "openapi-typescript --output ./src/Generated/cabbage-sb-types.ts "
},
"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"
]
}
}