-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"name": "shikimori-stat",
"version": "0.0.1",
"description": "",
"module": "dist/index.js",
"scripts": {
"start": "node dist",
"test": "eslint src/**/*.ts",
"build": "tsc"
},
"keywords": [],
"author": "Ivanik <[email protected]>",
"license": "AGPL-3.0-or-later",
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.1",
"@types/node": "20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@koa/cors": "^5.0.0",
"canvas": "^2.11.2",
"dotenv": "^16.4.5",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0"
}
}