-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.74 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": "homes",
"version": "0.1.0",
"private": true,
"description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
"main": "index.js",
"author": "Francesco Meli",
"license": "ISC",
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.54",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"@types/uuid": "^9.0.5",
"concurrently": "^8.2.2",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"http-proxy-middleware": "^2.0.6",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-declaration-strict-value": "^1.9.2"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"antd": "^5.9.4",
"axios": "^1.5.1",
"classnames": "^2.3.2",
"dexie": "^3.2.4",
"dexie-react-hooks": "^1.1.6",
"moment": "^2.29.4",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.16.0",
"react-scripts": "5.0.1",
"react-spinners": "^0.13.8",
"sass": "^1.68.0",
"typescript": "^4.9.5",
"use-debounce": "^9.0.4",
"usehooks-ts": "^2.9.1",
"uuid": "^9.0.1",
"web-vitals": "^2.1.4",
"xcase": "^2.0.1"
},
"scripts": {
"start": "concurrently --names 'frontend, backend, workers, redis' -c 'bgBlue.bold,bgMagenta.bold,bgGreen.bold,bgYellow.bold' \"npm run start-frontend\" \"npm run start-backend\" \"npm run start-workers\" \"docker compose -f docker-compose.development.yml up\"",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start-frontend": "react-scripts start",
"start-backend": "cd server && poetry run python server.py && cd ..",
"start-workers": "cd server && poetry run python worker.py && cd ..",
"lint": "eslint .",
"component": "node scripts/generateComponent.ts",
"ionic:build": "npm run build",
"ionic:serve": "npm run start"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}