-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 893 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
{
"name": "graphql-playground",
"version": "1.0.0",
"description": "A GraphQL Playground.",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Karl-Horning/graphql-playground.git"
},
"keywords": [
"GraphQL"
],
"author": "Karl Horning",
"license": "MIT",
"bugs": {
"url": "https://github.com/Karl-Horning/graphql-playground/issues"
},
"homepage": "https://github.com/Karl-Horning/graphql-playground#readme",
"dependencies": {
"@graphql-tools/schema": "^10.0.2",
"@prisma/client": "^5.7.1",
"apollo-server": "^3.13.0",
"dotenv": "^16.3.1",
"graphql": "^16.8.1",
"graphql-rate-limit-directive": "^2.0.5"
},
"devDependencies": {
"nodemon": "^3.0.2",
"prisma": "^5.7.1"
}
}