-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 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
43
{
"name": "chartjsprezzie",
"version": "1.0.0",
"description": "Presentation for Senior Phase of Hack Reactor",
"main": "client/src/index.js",
"scripts": {
"server-dev": "npx nodemon --watch server server/index.js",
"react-dev": "webpack --mode development --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jojortz/ChartJsPrezzie.git"
},
"author": "Jojo Ortiz",
"license": "ISC",
"bugs": {
"url": "https://github.com/jojortz/ChartJsPrezzie/issues"
},
"homepage": "https://github.com/jojortz/ChartJsPrezzie#readme",
"dependencies": {
"@mui/material": "^5.10.12",
"@mui/styled-engine-sc": "^5.10.6",
"axios": "^1.1.3",
"babel-plugin-macros": "^3.1.0",
"chartjs": "^0.3.24",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"nodemon": "^2.0.20",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}