-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
36 lines (36 loc) · 965 Bytes
/
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
{
"name": "blue-archive-api",
"version": "1.3.0",
"description": "API that serves data for the game Blue Archive",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"update": "node -e \"require('./assets/update')\"",
"debug": "node --inspect=0.0.0.0:9229 --unhandled-rejections=warn ./app.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"engines": {
"node": ">= 16.0"
},
"homepage": "https://api.ennead.cc/buruaka",
"author": "torikushiii",
"license": "AGPL-3.0",
"dependencies": {
"@fastify/cors": "^8.3.0",
"@fastify/sensible": "^5.2.0",
"debug": "^4.3.4",
"fastify": "^4.20.0",
"mongodb": "^5.7.0",
"pino": "^8.14.1",
"pino-pretty": "^10.1.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"eslint": "^8.45.0",
"eslint-plugin-unicorn": "^48.0.0"
},
"types": "./@types/index.d.ts"
}