-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.69 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
56
57
58
59
60
61
62
63
{
"name": "perspektiv-v2",
"version": "1.0.0",
"description": "Perspektiv v2.0",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=production node server",
"server": "nodemon server",
"dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"client:build": "cd client && npm run build"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/markdcross/perspektiv-v2.git"
},
"author": "Mark Cross, Danny Fraley, Roberto Rubet, and Josh Allen",
"license": "MIT",
"bugs": {
"url": "https://github.com/markdcross/perspektiv-v2/issues"
},
"homepage": "https://github.com/markdcross/perspektiv-v2#readme",
"dependencies": {
"@material-ui/core": "^4.11.3",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"compression": "^1.7.4",
"config": "^3.3.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-mongo-sanitize": "^2.0.2",
"express-rate-limit": "^5.2.3",
"express-validator": "^6.9.2",
"fontsource-roboto": "^4.0.0",
"gravatar": "^1.8.1",
"helmet": "^4.4.1",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.12",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-geocoder": "^3.27.0",
"nodemailer": "^6.4.17",
"react-images-upload": "^1.2.8",
"react-map-gl": "^6.1.4",
"slugify": "^1.4.6",
"uuidv4": "^6.2.6",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.7"
}
}