-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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": "API-school-graphql",
"version": "1.0.0",
"description": "API em GraphQL de uma escola de inglês.",
"main": "index.js",
"scripts": {
"start": "DEBUG=knex:query nodemon -e js,json, graphql ./api/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint api --ext .js",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/camillacorreia/API-school-graphql.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/camillacorreia/API-school-graphql/issues"
},
"homepage": "https://github.com/camillacorreia/API-school-graphql#readme",
"dependencies": {
"@graphql-tools/merge": "^8.3.14",
"apollo-datasource": "^3.3.2",
"apollo-datasource-rest": "^3.7.0",
"apollo-server": "^3.11.1",
"dataloader": "^2.1.0",
"datasource-sql": "^2.0.1",
"graphql": "^16.6.0",
"graphql-tools": "^8.3.14",
"json-server": "^0.16.1",
"nodemon": "^2.0.4",
"sqlite3": "^5.1.4"
},
"devDependencies": {
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
}
}