-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) 路 1.71 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) 路 1.71 KB
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
{
"name": "@1stg/delete-branch",
"version": "0.1.0",
"description": "Delete a lot of Git branches at once without tears. 馃槶",
"repository": "git@github.com:1stG/delete-branch.git",
"author": "JounQin <admin@1stg.me>",
"license": "MIT",
"bin": {
"delete-branch": "dist/bin.js"
},
"scripts": {
"dev": "concurrently \"yarn codegen --watch\" \"env-cmd jest --watch\"",
"lint": "eslint . --ext .ts --max-warnings 10",
"test": "jest",
"build": "rimraf dist && tsc -P src",
"codegen": "graphql-codegen"
},
"files": [
"dist"
],
"dependencies": {
"apollo-boost": "^0.4.9",
"commander": "^2.20.3",
"graphql": "^14.7.0",
"graphql-tag": "^2.12.7",
"micromatch": "^4.0.2",
"node-fetch": "^2.7.0",
"signale": "^1.4.0",
"tslib": "^1.14.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.6",
"@graphql-codegen/cli": "^1.21.8",
"@graphql-codegen/typescript": "1.23.0",
"@graphql-codegen/typescript-operations": "1.18.4",
"@octokit/graphql-schema": "^6.70.1",
"@types/graphql": "^14.5.0",
"@types/jest": "^24.9.1",
"@types/micromatch": "^3.1.1",
"@types/node": "^12.20.55",
"@types/node-fetch": "^2.6.13",
"@types/signale": "^1.4.7",
"commitlint": "^8.3.6",
"concurrently": "^4.1.2",
"env-cmd": "^9.0.3",
"eslint": "^6.8.0",
"eslint-config-1stg": "^5.8.1",
"eslint-plugin-graphql": "^3.1.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-transform-graphql": "^2.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"prettier-config-1stg": "^0.2.0",
"standard-version": "^6.0.1",
"ts-jest": "^24.3.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.10"
}
}