-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 KB
/
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
43
44
45
46
47
48
{
"name": "graphql-api",
"version": "1.0.0",
"description": "A simple GraphQL API",
"main": "src/index.js",
"scripts": {
"dev": "nodemon --exec npm run start-dev-server -- src",
"start-dev-server": "babel-node src",
"start": "node server",
"build": "babel src --out-dir server",
"migrate": "knex migrate:latest --knexfile ./src/db/config.js",
"migrate:seeds": "knex seed:run --knexfile ./src/db/config.js"
},
"author": {
"name": "Gabriel Marote",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Gamarote/GraphQL-API.git"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"nodemon": "^1.17.3"
},
"dependencies": {
"apollo-codegen": "^0.19.1",
"apollo-link-http": "^1.5.4",
"apollo-server-express": "^1.3.5",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"bookshelf": "^0.13.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"graphql-tools": "^2.24.0",
"joi": "^13.2.0",
"knex": "^0.14.6",
"lodash": "^4.17.5",
"pg": "^7.4.1",
"uuid": "^3.2.1"
}
}