-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 760 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 760 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
{
"name": "petsandpeople",
"version": "1.0.0",
"description": "inflightVR coding task",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Louis Ohlow",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"create-react-app": "^2.1.1",
"express": "^4.16.4",
"mongoclient": "^1.0.3",
"mongodb": "^3.1.10",
"mongoose": "^5.3.13",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"reactstrap": "^6.5.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"nodemon": "^1.18.6"
}
}