-
Notifications
You must be signed in to change notification settings - Fork 139
/
package.json
103 lines (103 loc) · 2.84 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "chimp",
"description": "Your development companion for doing quality, faster.",
"version": "0.0.0-development",
"author": "Lukasz Gandecki [email protected]",
"bin": {
"chimp": "./bin/run"
},
"bugs": "https://github.com/xolvio/chimp/issues",
"dependencies": {
"@graphql-codegen/add": "5.0.0",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-mongodb": "2.4.6",
"@graphql-codegen/typescript-operations": "4.0.1",
"@graphql-codegen/typescript-resolvers": "4.0.1",
"@graphql-tools/graphql-file-loader": "8.0.0",
"@graphql-tools/load": "8.0.0",
"@graphql-tools/merge": "9.0.0",
"@oclif/core": "^2",
"@oclif/plugin-help": "^5",
"chimp-graphql-codegen-plugin": "latest",
"debug": "4.3.4",
"enquirer": "^2.3.6",
"find-package-json": "^1.2.0",
"graphql": "16.6.0",
"graphql-tag": "^2.10.3",
"handlebars": "4.7.8",
"listr2": "6.6.1",
"ora": "^5.3.0",
"pascal-case": "^3.1.2",
"shelljs": "0.8.5",
"tslib": "^1"
},
"devDependencies": {
"@oclif/test": "^2.4.2",
"@types/chai": "^4",
"@types/debug": "^4.1.8",
"@types/find-package-json": "^1.2.3",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@types/shelljs": "^0.8.12",
"axios": "^1.4.0",
"chai": "^4.2.0",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"globby": "^10",
"jest": "29.6.2",
"nyc": "15.1.0",
"oclif": "^3.11.2",
"prettier": "^2.2.1",
"testdouble": "^3.16.1",
"testdouble-jest": "^2.0.0",
"ts-jest": "29.1.1",
"ts-node": "^8",
"tsx": "^3.12.7",
"typescript": "5.1.6",
"wait-on": "^5.2.1"
},
"engines": {
"node": ">=10.1.0"
},
"files": [
"/bin",
"/lib",
"/scaffold",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/xolvio/chimp",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "chimp",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "xolvio/chimp",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rm -rf lib && tsc -b && copyfiles -u 1 src/generate/templates/* src/generate/runtime-config-helpers/* lib",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --cache",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "jest",
"version": "oclif readme && git add README.md",
"type-check": "tsc --noEmit",
"end-to-end-test": "ts-node ./src/scripts/end-to-end-test.ts"
},
"types": "lib/index.d.ts"
}