-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·41 lines (41 loc) · 1.16 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
{
"name": "graphql",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=production node app.js",
"dev": "NODE_ENV=development nodemon app.js",
"latest": "knex migrate:latest --knexfile=config/knexfile",
"rollback": "knex migrate:rollback --knexfile=config/knexfile",
"seed": "knex seed:run --knexfile=config/knexfile",
"install:clean": "rm -rf node_modules package-lock.json && npm install"
},
"keywords": [
"graphql",
"mercurius"
],
"author": "Yuri Fontella",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/compress": "^7.0.0",
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"@fastify/rate-limit": "^9.1.0",
"@fastify/static": "^7.0.1",
"@graphql-tools/load-files": "^7.0.0",
"@graphql-tools/merge": "^9.0.3",
"@graphql-tools/resolvers-composition": "^7.0.1",
"@graphql-tools/schema": "^10.0.3",
"bcrypt": "^5.1.1",
"fastify": "^4.26.2",
"fastify-plugin": "^4.5.1",
"knex": "^3.1.0",
"mercurius": "^13.4.0",
"mercurius-auth": "^5.0.0",
"pg": "^8.11.3"
},
"devDependencies": {
"eslint": "^8.57.0"
}
}