forked from TrainingByPackt/Professional-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 733 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
{
"name": "activities",
"version": "1.0.0",
"description": "Lesson 10 Activities",
"main": "index.js",
"scripts": {
"Activity17": "concurrently --names GraphQL,React \"node activity-bff.js\" \"parcel serve activity-app-start.html\"",
"Activity17:solution": "concurrently --names GraphQL,React \"node activity-bff.js\" \"parcel serve activity-app.html\""
},
"author": "Hugo Di Francesco",
"license": "MIT",
"dependencies": {
"concurrently": "^4.1.2",
"express-graphql": "^0.9.0",
"graphql": "^14.5.8",
"micro": "^9.3.4",
"parcel-bundler": "^1.12.3",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
}
}