-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
87 lines (87 loc) · 2.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
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
{
"name": "moody",
"version": "0.1.0",
"private": true,
"author": {
"name": "Philipp Page",
"email": "mail@philipp-page.de",
"url": "https://philipp-page.de"
},
"repository": "https://github.com/COINS-SS21/moody",
"dependencies": {
"@aws-amplify/ui-react": "^1.2.26",
"@material-ui/core": "4.11.4",
"@material-ui/data-grid": "4.0.0-alpha.33",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "4.0.0-alpha.58",
"@reduxjs/toolkit": "^1.9.7",
"aws-amplify": "^4.3.46",
"clipboard-copy": "^4.0.1",
"date-fns": "^2.30.0",
"dexie": "^3.2.7",
"face-api.js": "^0.22.2",
"immer": "^9.0.21",
"lodash-es": "^4.17.21",
"meyda": "^5.6.3",
"plotly.js": "^2.34.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-plotly.js": "^2.6.0",
"react-redux": "^7.2.9",
"react-router-dom": "^5.3.4",
"react-scripts": "^4.0.3",
"redux-logger": "^3.0.6",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/meyda": "^4.3.8",
"@types/node": "^16.18.104",
"@types/react": "^17.0.80",
"@types/react-dom": "^17.0.25",
"@types/react-plotly.js": "^2.6.3",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.13",
"husky": "^7.0.4",
"ini": "^2.0.0",
"inquirer": "^8.2.6",
"lint-staged": "^11.2.6",
"prettier": "^2.8.8",
"source-map-explorer": "^2.5.3",
"typescript": "^4.9.5"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts --max_old_space_size=8192 start",
"build": "react-scripts --max_old_space_size=8192 build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install",
"amplify-modelgen": "node amplify/scripts/amplify-modelgen.js",
"amplify-push": "node amplify/scripts/amplify-push.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"*.{js,css,md}": "prettier --write"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}