forked from SlashNephy/arm-supplementary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.09 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
{
"name": "arm-supplementary",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/SlashNephy/arm-supplementary"
},
"license": "MIT",
"author": "SlashNephy",
"scripts": {
"build": "tsc --noEmit",
"format": "concurrently -n format: -m 1 'yarn:format:*'",
"format:eslint": "yarn lint:eslint --fix",
"format:prettier": "yarn lint:prettier --write",
"generate": "concurrently -n generate: -m 1 'yarn:generate:*'",
"generate:code": "yarn source && yarn format:prettier",
"generate:json": "ts-node bin/generateJson.ts",
"generate:readme": "ts-node bin/generateReadme.ts && yarn format:prettier",
"graphql": "concurrently -n graphql: -m 1 'yarn:graphql:*'",
"graphql:annict:schema": "curl -o graphql/annict/schema.graphql https://raw.githubusercontent.com/kiraka/annict-web/main/app/graphql/beta/schema.graphql",
"graphql:codegen": "graphql-codegen --config graphql/codegen.ts",
"lint": "concurrently -n lint: 'yarn:lint:*'",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"source": "concurrently -n source: 'yarn:source:*'",
"source:anime-offline-database": "ts-node bin/anime-offline-database.ts",
"source:annict": "ts-node bin/annict.ts"
},
"eslintConfig": {
"extends": [
"@slashnephy/eslint-config"
],
"overrides": [
{
"files": "graphql/codegen.ts",
"parserOptions": {
"project": "./tsconfig.node.json"
}
}
]
},
"dependencies": {
"dotenv": "16.4.1",
"graphql-request": "6.1.0",
"markdown-doc-builder": "1.3.0",
"node-fetch": "3.3.2",
"zod": "3.22.4"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.2.2",
"@slashnephy/eslint-config": "2.3.14",
"@slashnephy/prettier-config": "1.0.73",
"@types/node": "20.11.16",
"concurrently": "8.2.2",
"eslint": "8.56.0",
"graphql": "16.8.1",
"prettier": "3.2.5",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}