-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.49 KB
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
54
55
{
"name": "cmoDATA",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"build:dev": "npm run build -- --watch --mode=development",
"start:dev": "nodemon server --ignore dist/ --ignore src/",
"start:dev:seed": "set SEED=true && nodemon server --ignore dist/ --ignore src/",
"start": "node server"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@material-ui/core": "^4.11.3",
"@material-ui/data-grid": "^4.0.0-alpha.20",
"@material-ui/lab": "^4.0.0-alpha.57",
"@mui/material": "^5.2.6",
"@mui/x-data-grid": "^7.12.1",
"chart.js": "^3.6.0",
"express": "^4.17.1",
"fast-csv": "^4.3.6",
"fs": "0.0.1-security",
"moment": "^2.29.4",
"pg": "^8.5.1",
"react-chartjs-2": "^3.2.0",
"sequelize": "^6.9.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-react": "^7.12.7",
"axios": "^1.7.3",
"babel-loader": "^9.1.0",
"faker": "^5.1.0",
"nodemon": "^3.1.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0"
},
"engines": {
"node": ">=16.0.0 <17.0.0"
}
}