-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 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
{
"private": true,
"scripts": {
"lint:frontend:eslint": "eslint .",
"lint:frontend:ts": "tsc --noEmit",
"lint:prettier": "prettier --check .",
"prebuild": "rm -rf frontend_dist",
"preinstall": "npx only-allow pnpm",
"start": "parcel & nodemon mockBackend.js",
"build": "parcel build --no-source-maps",
"postbuild": "find frontend_dist/ -type f ! -name '*.gz' -delete && find frontend_dist/ -type f -name '*.map.gz' -delete && ls -lah frontend_dist/",
"test": "jest"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.15.0",
"@mui/material": "^5.15.3",
"autosuggest-highlight": "^3.3.4",
"axios": "^1.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.21.0",
"react-router-dom": "^6.22.1",
"remeda": "^1.43.0",
"swr": "^2.2.4"
},
"devDependencies": {
"@babel/preset-react": "^7.23.3",
"@parcel/compressor-gzip": "^2.10.3",
"@parcel/config-default": "^2.10.3",
"@parcel/transformer-less": "^2.10.3",
"@types/autosuggest-highlight": "^3.2.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.18",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"buffer": "^6.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.1.0",
"express": "^4.18.2",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"parcel": "2.11.0",
"prettier": "3.1.1",
"process": "^0.11.10",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"targets": {
"default": {
"source": "frontend/index.html",
"distDir": "frontend_dist"
}
}
}