-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 970 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 970 Bytes
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
{
"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": {
"@apollo/server": "^5.4.0",
"@prisma/adapter-better-sqlite3": "^7.3.0",
"@prisma/client": "^7.3.0",
"axios": "^1.13.5",
"dotenv": "^16.5.0",
"graphql": "^16.11.0",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"ava": "^6.2.0",
"axios-mock-adapter": "^2.1.0",
"nodemon": "^3.1.10",
"prisma": "^7.3.0"
}
}