-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "fitness-tracker-mvp",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"build": "webpack --mode production",
"test": "jest",
"lint": "eslint src/**/*.js",
"format": "prettier --write src/**/*.js"
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1",
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"axios": "1.7.7",
"react-router-dom": "6.28.0",
"react-chartjs-2": "5.2.0",
"mongodb": "6.10.0",
"express": "4.21.1",
"body-parser": "1.20.3",
"dotenv": "16.4.5"
},
"devDependencies": {
"nodemon": "2.0.22",
"webpack": "5.84.1",
"webpack-cli": "5.0.1",
"babel-loader": "8.3.1",
"@babel/core": "7.22.10",
"@babel/preset-env": "7.22.9",
"@babel/preset-react": "7.22.5",
"html-webpack-plugin": "5.5.3",
"css-loader": "6.8.1",
"style-loader": "3.3.3",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.0",
"jest": "^29.6.4",
"@babel/runtime": "^7.22.10",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1"
}
}