-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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
{
"name": "react-apollo-graphql",
"version": "1.0.0",
"description": "A twitter clone",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && yarn start",
"dev": "concurrently \"yarn run server\" \"yarn run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ajsalemo/React-Apollo-GraphQL.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ajsalemo/React-Apollo-GraphQL/issues"
},
"homepage": "https://github.com/Ajsalemo/React-Apollo-GraphQL#readme",
"dependencies": {
"apollo-cache-inmemory": "^1.5.1",
"apollo-cache-persist": "^0.1.1",
"apollo-server": "^2.25.3",
"apollo-server-express": "^2.9.0",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"firebase-admin": "^8.2.0",
"graphql": "^14.1.1",
"twitter-lite": "^0.9.4"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.10"
}
}