forked from foodbarrio/reactnative-graphql-code-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 911 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
{
"name": "reactnative-graphql-code-test",
"version": "1.0.0",
"description": "The goal is to implement a small Post/Comments app using GraphQL API and React Native.",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"db-setup": "npx knex migrate:rollback && npx knex migrate:latest && npx knex seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apgsn/reactnative-graphql-code-test.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/apgsn/reactnative-graphql-code-test/issues"
},
"homepage": "https://github.com/apgsn/reactnative-graphql-code-test#readme",
"dependencies": {
"apollo-server": "^2.17.0",
"dotenv": "^8.2.0",
"graphql": "^15.3.0",
"knex": "^0.21.5",
"pg": "^8.3.3",
"run.env": "^1.1.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}