-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.13 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
{
"name": "reactexpress",
"version": "1.0.0",
"description": "Starter kit for creating React/Redux and Express apps",
"main": "server.js",
"scripts": {
"client-install": "cd client && npm install",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"init": "node setup/init.js && node setup/tables.js",
"seeder": "node setup/filler.js && node setup/tags.js",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Brad Traversy",
"license": "MIT",
"devDependencies": {
"nodemon": "^1.19.0"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"concurrently": "^3.6.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.16.2",
"express-hbs": "^1.1.0",
"express-validator": "^5.3.1",
"faker": "^4.1.0",
"geolib": "^2.0.24",
"humanize-duration": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.1",
"mysql": "^2.16.0",
"nodeadmin": "^0.1.2",
"nodemailer": "^6.1.1",
"password-hash": "^1.2.2",
"socket.io": "^2.0.3",
"uuid": "^3.3.2"
}
}