-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 968 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 968 Bytes
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
{
"name": "full-stack-react-app-tutorial",
"version": "1.0.0",
"description": "Full stack React app tutorial.",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"client": "npm start --prefix client",
"server": "nodemon server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/R0LL0/full-stack-react-app-tutorial.git"
},
"keywords": [
"react"
],
"author": "Roland El Khoury",
"license": "ISC",
"bugs": {
"url": "https://github.com/R0LL0/full-stack-react-app-tutorial/issues"
},
"homepage": "https://github.com/R0LL0/full-stack-react-app-tutorial#readme",
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.6"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"pg": "^8.4.1",
"request": "^2.88.2",
"request-promise": "^4.2.6"
}
}