-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 947 Bytes
/
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
{
"name": "unagi_frontend_test",
"private": true,
"scripts": {
"start": "run-p start:front start:back",
"start:front": "parcel --port 8000 index.html",
"start:back": "json-server --port 8001 db.json",
"format": "prettier --write \"src/**/*.{js,jsx,json,md,ts,tsx,css}\""
},
"devDependencies": {
"@types/react": "^17.0.25",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.5",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/material": "^5.16.5",
"@mui/x-date-pickers": "^7.11.1",
"axios": "^1.7.2",
"dayjs": "^1.11.12",
"final-form": "^4.20.10",
"json-server": "^1.0.0-beta.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-final-form": "^6.5.9",
"react-router-dom": "^5.3.0"
}
}