-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.13 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
{
"version": "1.1.7",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"public"
],
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "yarn rm:dist && tsc -w",
"prepare": "yarn rm:dist && tsc",
"start": "node dist/index",
"rm:dist": "rm -rf dist"
},
"peerDependencies": {},
"name": "create-graphql-starter",
"description": "Set up a modern GraphQL TypeScript server by running one command",
"author": "Justine Licuanan",
"keywords": [
"cli",
"graphql",
"typescript",
"starter-kit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JustineLicuanan/create-graphql-starter.git"
},
"bugs": {
"url": "https://github.com/JustineLicuanan/create-graphql-starter/issues"
},
"homepage": "https://github.com/JustineLicuanan/create-graphql-starter#readme",
"bin": {
"create-graphql-starter": "./dist/index.js",
"cregs": "./dist/index.js"
},
"devDependencies": {
"@types/fs-extra": "^9.0.6",
"@types/node": "^14.14.22",
"typescript": "^4.1.3"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.0.0",
"fs-extra": "^9.1.0"
}
}