-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "graphene-codegen",
"version": "1.0.13",
"description": "Generate Graphene Python boilerplate from a GraphQL schema.",
"main": "./lib/index.js",
"bin": {
"graphene-codegen": "./lib/index.js"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"test": "jest",
"refresh": "rm -rf ./node_modules && npm install",
"prepublish": "npm run test && npm run build"
},
"keywords": [
"graphql",
"graphene"
],
"author": "jeremy-deutsch",
"repository": "https://github.com/jeremy-deutsch/graphene-codegen",
"license": "ISC",
"dependencies": {
"commander": "^3.0.0",
"graphql": "^14.4.2"
},
"devDependencies": {
"@types/graphql": "^14.2.3",
"@types/node": "^12.7.1",
"@types/jest": "^24.0.17",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}