-
Notifications
You must be signed in to change notification settings - Fork 197
/
package.json
102 lines (102 loc) · 2.42 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
{
"name": "@genshindev/api",
"version": "1.0.0",
"description": "API that serves data for the game Genshin Impact by miHoYo.",
"private": true,
"main": "dist/index.js",
"scripts": {
"start": "node dist",
"forever": "forever start .",
"build": "tsc",
"watch": "tsc -w",
"dev": "nodemon",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.ts && prettier --check .",
"prebuild": "ts-node ./scripts/prebuild.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/genshindev/api.git"
},
"author": {
"email": "[email protected]",
"name": "genshin.dev",
"url": "https://genshin.dev"
},
"contributors": [
{
"name": "Marvin Witt",
"email": "[email protected]",
"url": "https://github.com/NurMarvin"
}
],
"engines": {
"node": "^20.0.0"
},
"license": "OSL-3.0",
"bugs": {
"url": "https://github.com/genshindev/api/issues"
},
"homepage": "https://api.genshin.dev/",
"devDependencies": {
"@types/keyv": "^3.1.4",
"@types/koa": "^2.13.5",
"@types/koa-helmet": "^6.0.4",
"@types/koa-router": "^7.4.4",
"@types/mime-types": "^2.1.1",
"@types/sharp": "^0.26.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.27.5",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@koa/cors": "^3.4.3",
"@sentry/node": "^6.19.7",
"@sentry/tracing": "^6.19.7",
"@types/koa__cors": "^3.3.1",
"chalk": "^4.1.2",
"file-loader": "^6.2.0",
"forever": "^4.0.3",
"gulp-cli": "^2.3.0",
"json-loader": "^0.5.7",
"keyv": "^4.5.2",
"koa": "^2.14.1",
"koa-body": "^4.2.0",
"koa-helmet": "^6.1.0",
"koa-router": "^10.1.1",
"mime-types": "^2.1.35",
"sharp": "^0.26.3"
},
"prettier": {
"endOfLine": "lf",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"es6": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"prettier"
]
}
}