-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "react-node-express-tryout",
"version": "1.0.0",
"description": "React and Sequelize Example",
"main": "server.js",
"private": true,
"author": "Toufiq (https://twitter.com/burningraven06)",
"scripts": {
"client": "cd react_node_express_app && npm start",
"server": "nodemon server.js",
"devmode": "concurrently \"npm run server\" \"npm run client\" ",
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"install_all": "npm install && cd react_node_express_app && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluescorpx93/fcc-node-react-pa.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bluescorpx93/fcc-node-react-pa/issues"
},
"homepage": "https://github.com/bluescorpx93/fcc-node-react-pa#readme",
"dependencies": {
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"express-session": "^1.15.6",
"morgan": "^1.9.0",
"nodemon": "1.17.2",
"pg-promise": "^8.1.1",
"sequelize": "^4.37.1"
},
"devDependencies": {
"concurrently": "^3.5.0"
},
"engines": {
"node": "8.10.0"
}
}