-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.79 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
{
"packageManager": "[email protected]",
"name": "@rena.to/github-blog",
"version": "0.4.2",
"description": "Turn your github issues in CMS for your blog",
"main": "dist/index.js",
"repository": "https://github.com/renatorib/github-blog",
"author": "Renato Ribeiro <[email protected]>",
"license": "MIT",
"scripts": {
"codegen": "graphql-codegen -r dotenv-flow/config",
"type-check": "tsc --noEmit",
"dev": "yarn codegen --watch",
"build": "rm -rf ./dist && yarn tsc --project tsconfig.build.json",
"test": "yarn codegen && yarn jest",
"prepublishOnly": "yarn test",
"debug": "node -r dotenv-flow/config src/tmp/debug.js",
"docs": "typedoc src --readme none --githubPages false",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
},
"nano-staged": {
"*.{ts,css,md}": "prettier --write"
},
"jest": {
"preset": "ts-jest",
"setupFiles": [
"dotenv-flow/config"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"files": [
"package.json",
"README.md",
"dist"
],
"dependencies": {
"classnames": "^2.3.1",
"code-tag": "^1.1.0",
"undici": "^5.22.1",
"yaml": "^2.3.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-codegen/typescript-generic-sdk": "^3.1.0",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@types/jest": "^29.5.2",
"dotenv-flow": "^3.2.0",
"eslint": "^7.23.0",
"graphql": "^15.5.0",
"jest": "^29.5.0",
"nano-staged": "^0.8.0",
"prettier": "^2.2.1",
"simple-git-hooks": "^2.8.1",
"ts-jest": "^29.1.0",
"typedoc": "^0.22.4",
"typedoc-plugin-markdown": "^3.11.2",
"typescript": "^5.1.3"
}
}