-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.32 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "typescript-graphql",
"version": "0.0.9",
"description": "Easiest way to convert TypeScript to GraphQL",
"main": "./dist/index.js",
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsc",
"build:watch": "tsc -w",
"prepare": "npm run build",
"start": "ts-node src/tsgc.ts",
"test": "jest",
"server": "ts-node src/demo/server.ts",
"server:watch": "nodemon dist/demo/server.js"
},
"bin": {
"tsgc": "./bin/tsgc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xFAANG/typescript-graphql.git"
},
"keywords": [
"TypeScript",
"GraphQL"
],
"author": "xFAANG Marcin Hagmajer",
"license": "MIT",
"bugs": {
"url": "https://github.com/xFAANG/typescript-graphql/issues"
},
"homepage": "https://github.com/xFAANG/typescript-graphql#readme",
"peerDependencies": {
"graphql": "^14.7.0 || ^15.3.0",
"typescript": ">4.0.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.21",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.4.0",
"jest": "^26.6.3",
"node-notifier": "^9.0.0",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"dependencies": {
"commander": "^7.0.0"
}
}