-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.67 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
{
"name": "@flyyer/cli",
"description": "Flyyer CLI",
"version": "2.0.2",
"author": "Patricio López Juri @lopezjurip",
"repository": "useflyyer/flyyer-cli",
"license": "MIT",
"private": false,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"flyyer": "./bin/run"
},
"scripts": {
"build:dry": "tsc --noEmit",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc.js",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"version": "oclif-dev readme && git add README.md",
"graphql:codegen": "apollo client:codegen --endpoint http://localhost:9001/graphql --target typescript --outputFlat --no-addTypename --includes src/flyyer-graphql/**/*.ts --tagName gql src/flyyer-graphql/types.ts"
},
"bugs": "https://github.com/useflyyer/flyyer-cli/issues",
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/yarn.lock",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/useflyyer/flyyer-cli",
"keywords": [
"oclif",
"flyyer"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"oclif": {
"commands": "./lib/commands",
"bin": "flyyer",
"plugins": [
"@oclif/plugin-help"
]
},
"dependencies": {
"@flyyer/flyyer": "^3.4.1",
"@flyyer/goerr": "^3.0.0",
"@flyyer/types": "^2.0.3",
"@flyyer/utils": "^0.2.1",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.3",
"archiver": "^5.3.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"cross-fetch": "^3.1.4",
"debug": "^4.3.2",
"dedent": "^0.7.0",
"del": "^6.0.0",
"form-data": "^4.0.0",
"graphql": "^15.6.1",
"graphql-request": "3.6.1",
"mini-svg-data-uri": "^1.4.3",
"open": "~7.4.2",
"parcel-bundler": "^1.12.5",
"qs": "^6.10.1",
"tslib": "^2.3.1",
"twemoji": "^13.1.0"
},
"devDependencies": {
"@flyyer/eslint-config": "^2.1.1",
"@oclif/dev-cli": "^1.26.0",
"@types/archiver": "^5.1.1",
"@types/debug": "^4.1.7",
"@types/dedent": "^0.7.0",
"@types/node": "^16.11.1",
"@types/node-fetch": "^3.0.3",
"@types/parcel-bundler": "^1.12.4",
"apollo": "2.33.6",
"eslint": "^7.32.0",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.2.0",
"globby": "^11.0.4",
"husky": "^4.3.8",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
}
}