-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 940 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
{
"name": "apollo-react",
"version": "1.0.0",
"description": "App that lists SpaceX launch missions",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Wiktor Kujawa",
"license": "MIT",
"dependencies": {
"@graphql-tools/merge": "^6.0.9",
"apollo-server-express": "^2.13.1",
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"bcryptjs": "^2.4.3",
"concurrently": "^5.2.0",
"config": "^3.3.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs": "0.0.1-security",
"glob": "^7.1.6",
"graphql": "^15.0.0",
"jsonwebtoken": "^8.5.1",
"merge-graphql-schemas": "^1.7.8",
"mongoose": "^5.9.15"
},
"devDependencies": {
"nodemon": "^2.0.3"
}
}