-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 900 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
33
34
35
36
37
38
39
40
41
{
"name": "gql2sql",
"version": "2.0.0",
"description": "An example GraphQL API service connecting to a SQL database.",
"type": "module",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"resetDB": "prisma migrate reset",
"test": "ava --timeout=20s",
"test:watch": "ava --watch --timeout=20s"
},
"keywords": [
"sql",
"graphql",
"nodejs",
"prisma"
],
"author": "Patrick Metzdorf <patrick.metzdorf@hey.com>",
"license": "MIT",
"ava": {
"files": [
"**/*.test.js"
],
"concurrency": 4,
"verbose": true
},
"dependencies": {
"@prisma/client": "^4.0.0",
"apollo-server": "^3.0.0",
"apollo-server-fastify": "^3.0.0",
"axios": "^1.7.7",
"graphql": "^15.5.0"
},
"devDependencies": {
"ava": "4.3.3",
"axios-mock-adapter": "1.21.2",
"nodemon": "2.0.19",
"prisma": "4.3.1"
}
}