-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "axoscan",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "node server/server.js",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "nodemon server/server.js",
"dev:frontend": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@ant-design/charts": "^2.0.3",
"@ant-design/icons": "^5.3.6",
"antd": "^5.16.1",
"axios": "^1.6.8",
"concurrently": "^8.2.2",
"cors": "git+https://github.com/expressjs/cors.git",
"express": "^4.19.2",
"mongodb": "^6.5.0",
"mongoose": "^8.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"form-data": "^4.0.0",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.0",
"vite": "^5.2.0"
}
}