-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.18 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": "Geoblog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"build-watch": "webpack -w",
"start": "node server",
"start-dev": "cross-env NODE_ENV=development&&npm-run-all --parallel watch:server watch:build",
"watch:build": "Webpack -w --mode development",
"watch:server": "nodemon server",
"seed": "node seed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.8.3",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.4",
"@mui/icons-material": "^5.6.1",
"@mui/material": "^5.4.2",
"@mui/styles": "^5.4.2",
"@mui/system": "^5.4.1",
"axios": "^0.26.1",
"babel-loader": "^8.2.2",
"buffer": "^6.0.3",
"connect-mongo": "^4.5.0",
"core-js": "^3.13.1",
"dotenv": "^10.0.0",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.9.1",
"express": "^4.17.1",
"express-request-id": "^1.4.1",
"express-session": "^1.17.2",
"geo-coordinates-parser": "^1.3.2",
"html-react-parser": "^2.0.0",
"html-to-draftjs": "^1.5.0",
"immutable": "^4.0.0",
"jshashes": "^1.0.8",
"leaflet": "^1.7.1",
"marked": "^4.0.12",
"mongodb": "^3.6.9",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draft-wysiwyg": "^1.14.7",
"react-leaflet": "^2.7.0",
"react-router-dom": "^6.2.1",
"style-loader": "^3.3.1"
},
"devDependencies": {
"@testing-library/react": "^11.2.7",
"@types/leaflet": "^1.7.1",
"babel-jest": "^27.0.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"jest": "^27.0.4",
"mocha": "^10.0.0",
"react-test-renderer": "^17.0.2",
"webpack": "^5.72.0",
"webpack-cli": "^4.10.0"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}