-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.41 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "eidia",
"version": "0.0.1",
"description": "EiDiA Application",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/csehlke/EiDiA.git"
},
"bugs": {
"url": "https://github.com/csehlke/EiDiA/issues"
},
"homepage": "https://github.com/csehlke/EiDiA#readme",
"scripts": {
"back-devstart": "nodemon EiDiA_backend/index.js",
"back-start": "node EiDiA_backend/index.js",
"front-build": "webpack --config EiDiA_frontend/webpack.prod.js",
"front-devstart": "webpack-dev-server --open --config EiDiA_frontend/webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.10.1",
"@material-ui/lab": "^4.0.0-alpha.55",
"@material-ui/pickers": "^3.2.10",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"date-fns": "^2.14.0",
"draft-js": "^0.11.6",
"express": "^4.17.1",
"helmet": "^3.23.0",
"jsonwebtoken": "^8.5.1",
"material-table": "1.63.1",
"mongoose": "^5.9.18",
"pdfmake": "^0.1.66",
"react": "^16.13.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^16.13.1",
"react-dropzone": "^11.0.1",
"react-icons": "^3.10.0",
"react-iframe": "^1.8.0",
"react-image-crop": "^8.6.4",
"react-router-dom": "^5.2.0",
"react-toastify": "^6.0.8",
"recharts": "^1.8.5",
"styled-components": "^5.1.1",
"tesseract.js": "^2.1.1",
"uuid": "^8.2.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-loader": "8.1.0",
"clean-webpack-plugin": "0.1.19",
"clsx": "^1.1.1",
"css-loader": "^3.6.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"favicons-webpack-plugin": "^3.0.1",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"nodemon": "^2.0.4",
"prop-types": "^15.7.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"engines": {
"node": ">=4.3"
}
}