-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "expense-management-system",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm start\" \"npm run client\" ",
"test": "jest",
"e2e": "cypress open"
},
"keywords": [],
"author": "Shreya",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.16",
"@mui/material": "^5.10.16",
"@mui/styled-engine-sc": "^5.10.16",
"antd": "^5.0.3",
"axios": "^1.2.0",
"colors": "^1.4.0",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jest": "^27.5.1",
"moment": "^2.29.4",
"mongoose": "^6.7.4",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"react-router-dom": "^6.4.4",
"react-scripts": "^5.0.1",
"styled-components": "^5.3.6",
"web-vitals": "^3.1.0"
},
"devDependencies": {
"cypress": "^11.2.0"
},
"jest": {
"collectCoverage": true
}
}