-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
42
43
{
"name": "gei-crud",
"version": "0.0.4",
"description": "GraphQL Editor integration for stucco. Allows basic crud operations and relations.",
"main": "index.js",
"private": false,
"scripts": {
"start": "gecli dev",
"build": "tsc",
"watch": "tsc --watch",
"update": "gecli schema && gecli typings",
"temp-db": "docker run -p 27017:27017 --rm mongo"
},
"repository": {
"type": "git",
"url": "https://github.com/graphql-editor/gei-crud.git"
},
"author": "GraphQL Editor Centaur Generator",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.5.7",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"graphql-zeus": "^4.0.4",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.7.0",
"node-fetch": "^2.6.0",
"stucco-js": "^0.9.16",
"ws": "^8.8.0"
}
}