-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.7 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
{
"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.3",
"commander": "^2.20.0",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"micromatch": "^4.0.2",
"node-fetch": "^2.6.0",
"signale": "^1.4.0",
"tslib": "^1.10.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.1.0",
"@graphql-codegen/cli": "^1.4.0",
"@graphql-codegen/typescript": "1.4.0",
"@graphql-codegen/typescript-operations": "1.4.0",
"@octokit/graphql-schema": "^6.24.0",
"@types/graphql": "^14.2.3",
"@types/jest": "^24.0.15",
"@types/micromatch": "^3.1.1",
"@types/node": "^12.6.8",
"@types/node-fetch": "^2.5.0",
"@types/signale": "^1.2.1",
"commitlint": "^8.1.0",
"concurrently": "^4.1.1",
"env-cmd": "^9.0.3",
"eslint": "^6.1.0",
"eslint-config-1stg": "^5.4.1",
"eslint-plugin-graphql": "^3.0.3",
"husky": "^3.0.1",
"jest": "^24.8.0",
"jest-transform-graphql": "^2.1.0",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"prettier-config-1stg": "^0.1.0",
"standard-version": "^6.0.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}