-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.94 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
104
105
106
107
108
109
110
111
{
"name": "gitflow-action-release-template",
"version": "v1.2.3",
"description": "Build and release GitHub Actions for Node.js with GitFlow",
"module": "src/index.ts",
"author": "C. Spencer Beggs <[email protected]>",
"repository": {
"url": "https://github.com/spencerbeggs/gitflow-action-release-template.git",
"type": "git"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"debug": "node --inspect dist/index.js",
"test": "jest --verbose",
"bootstrap": "ts-node --project tsconfig.run.json lib/bootstrap.ts init",
"build": "yarn clean && NODE_ENV=production yarn rollup",
"build-dev": "yarn clean && NODE_ENV=development yarn rollup && yarn package",
"lint": "tsc -p tsconfig.lint.json --noEmit && eslint '*/**/*.{js,jsx,ts,tsx,json}' --quiet --fix",
"package": "ts-node --project tsconfig.run.json lib/package.ts",
"dev": "yarn clean && NODE_ENV=development rollup -c rollup.config.ts --watch --waitForBundleInput",
"rollup": "rollup -c rollup.config.ts",
"github-schema": "apollo client:download-schema --config=apollo.config.js vendor/github.graphql",
"codegen": "graphql-codegen --config codegen.yml"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.11.5",
"@babel/eslint-plugin": "^7.11.5",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@graphql-codegen/cli": "^1.17.10",
"@graphql-codegen/named-operations-object": "^1.17.8",
"@graphql-codegen/typescript": "^1.17.10",
"@graphql-codegen/typescript-document-nodes": "^1.17.8",
"@graphql-codegen/typescript-operations": "^1.17.8",
"@graphql-codegen/typescript-react-apollo": "^2.0.7",
"@graphql-codegen/typescript-resolvers": "^1.17.10",
"@octokit/graphql": "^4.5.6",
"@octokit/graphql-schema": "^8.36.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^6.0.0",
"@types/bent": "^7.3.0",
"@types/child-process-promise": "^2.2.1",
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.161",
"@types/node": "^14.11.2",
"@types/prettier": "^2.1.1",
"@types/react": "^16.9.50",
"@types/yargs": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"babel-jest": "^26.3.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-macros": "^2.8.0",
"builtin-modules": "^3.1.0",
"chalk": "^4.1.0",
"change-case": "^4.1.1",
"child-process-promise": "^2.2.1",
"dev-console.macro": "^0.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-prettier": "^3.1.4",
"graphql-tag": "^2.11.0",
"husky": "^4.3.0",
"inquirer": "^7.3.3",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"lodash": "^4.17.20",
"prettier": "^2.1.2",
"rollup": "^2.28.2",
"rollup-plugin-dts": "^1.4.13",
"rollup-plugin-license": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"source-map-support": "^0.5.19",
"ts-babel-node": "^1.1.1",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"tslib": "^2.0.1",
"typescript": "^4.0.3",
"yargs": "^16.0.3"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@apollo/client": "^3.2.2",
"@graphql-codegen/typed-document-node": "^1.17.9",
"@graphql-typed-document-node/core": "^3.1.0",
"cross-fetch": "^3.0.6",
"fs-extra": "^9.0.0",
"graphql": "^15.3.0",
"react": "^16.13.1",
"subscriptions-transport-ws": "^0.9.18"
}
}