-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 991 Bytes
/
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
{
"name": "spacex",
"version": "1.0.0",
"description": "App that lists SpaceX launch missions",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run start\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "https://github.com/EfrenSanchez/spacex.git"
},
"keywords": [
"ApolloCli",
"GraphQL",
"React",
"Express"
],
"author": "Efren Sanchez <efren.sanchezgon@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EfrenSanchez/spacex/issues"
},
"homepage": "https://github.com/EfrenSanchez/spacex#readme",
"dependencies": {
"axios": "^0.18.0",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.1.1"
},
"devDependencies": {
"nodemon": "^1.18.10"
}
}