generated from rennemannd/MERN-Heroku-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.92 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
81
82
83
84
85
86
87
88
89
90
{
"name": "react_template_repo",
"version": "1.0.0",
"description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
"main": "index.js",
"scripts": {
"test": "mocha server/tests",
"install-all": "concurrently \"npm install\" \"cd client && npm install\"",
"client": "cd client && npm start",
"server": "nodemon server/server.js",
"dev": "concurrently \"nodemon server/server.js\" \"cd client && npm run start\"",
"build": "cd client && npm build",
"start": "node server/server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/UFWebApps/React_Template_Repo.git"
},
"keywords": [],
"author": "Dakota Rennemann",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.9.11",
"@material-ui/lab": "^4.0.0-alpha.47",
"@passport-next/passport-facebook": "^3.1.2",
"@passport-next/passport-google-oauth2": "^1.0.0",
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "^1.3.2",
"@unicef/material-ui-currency-textfield": "^0.8.6",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"concurrently": "^4.1.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"date-fns": "^2.12.0",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.0",
"gridfs-stream": "^1.1.1",
"hogan": "^1.0.2",
"jsonwebtoken": "^8.5.1",
"material-table": "^1.57.2",
"material-ui-popup-state": "^1.5.3",
"mocha": "^6.2.1",
"mongodb": "^3.5.4",
"mongoose": "^5.7.1",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.0.3",
"nodemailer": "^6.4.5",
"nodemon": "^1.18.10",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-avatar": "^3.9.2",
"react-dom": "^16.13.0",
"react-stripe-checkout": "^2.6.3",
"react-use": "^13.27.0",
"should": "^13.2.3",
"stripe": "^8.39.2",
"supertest": "^4.0.2",
"uuid": "^7.0.3",
"validator": "^12.2.0"
},
"homepage": "https://github.com/UFWebApps/React_Template_Repo#readme",
"devDependencies": {
"@editorjs/checklist": "^1.1.0",
"@editorjs/delimiter": "^1.1.0",
"@editorjs/editorjs": "^2.17.0",
"@editorjs/embed": "^2.2.1",
"@editorjs/header": "^2.4.0",
"@editorjs/image": "^2.3.3",
"@editorjs/link": "^2.1.3",
"@editorjs/list": "^1.4.0",
"@editorjs/marker": "^1.2.2",
"@editorjs/paragraph": "^2.6.1",
"@editorjs/quote": "^2.3.0",
"@editorjs/raw": "^2.1.1",
"@editorjs/simple-image": "^1.3.3",
"@editorjs/table": "^1.2.2",
"@editorjs/warning": "^1.1.1",
"react-editor-js": "^1.4.4"
}
}