forked from sjohn198/SafeHaven
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "csc307",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "cd packages/react-frontend && npm run build",
"start": "concurrently \"cd packages/express-backend && npm start\" \"cd packages/react-frontend && npm start\"",
"dev": "concurrently \"cd packages/express-backend && npm run dev\" \"cd packages/react-frontend && npm run dev\"",
"prettier": "npx prettier . --write",
"eslint": "npx eslint ."
},
"author": "",
"license": "ISC",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/plugin-syntax-jsx": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.24.6",
"@eslint/js": "^9.2.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.0"
},
"dependencies": {
"@mui/material": "^5.15.16",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"buffer": "^6.0.3",
"chart.js": "^4.4.3",
"dotenv": "^16.4.5",
"eslint-config-google": "^0.14.0",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"mdb-react-ui-kit": "^8.0.0",
"mongoose": "^8.3.2",
"multer": "^1.4.5-lts.1",
"prettier": "^3.2.5",
"react-router-dom": "^6.23.1",
"reactjs-popup": "^2.0.6"
}
}