-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.23 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
{
"name": "full-stack-react-app",
"version": "1.0.0",
"description": "A representative finder for Northern Ireland using React.js frontend, Express.js backend and PostgresSQL database.",
"main": "index.js",
"scripts": {
"dev": "concurrently run \"npm run server\" \"npm run client\"",
"client": "npm start --prefix client",
"server": "nodemon --exec babel-node server",
"build": "babel server -d lib",
"start": "npm build && node lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgpwilson/full-stack-react-app.git"
},
"keywords": [
"react"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mgpwilson/full-stack-react-app/issues"
},
"homepage": "https://github.com/mgpwilson/full-stack-react-app#readme",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.4",
"concurrently": "^4.1.1",
"nodemon": "^1.19.1"
},
"dependencies": {
"aws-sdk": "^2.496.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"pg": "^7.11.0",
"request": "^2.88.0",
"request-promise": "^4.2.4"
}
}