-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "mern",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"server": "node server.js",
"client": "node scripts/start-client.js",
"start": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "node scripts/build.js",
"seed": "node scripts/seedDB.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.2.0",
"nodemon": "^2.0.3"
},
"dependencies": {
"@sendgrid/mail": "^7.1.0",
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootbox": "^5.4.0",
"bootstrap": "^4.4.1",
"cheerio": "^1.0.0-rc.3",
"connect-mongo": "^3.2.0",
"dotenv": "^8.2.0",
"elemental": "^0.6.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"minimist": "1.2.3",
"mongoose": "^5.9.10",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react-bootstrap": "^1.0.1",
"react-cookie": "^4.0.3",
"react-modal": "^3.11.2",
"react-number-format": "^4.4.1",
"react-overlays": "^3.1.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"request": "^2.88.2"
}
}