-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "anilist-api",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "nodemon --watch . --ext js,json --exec \"node dev.js\"",
"start": "fastify start -l info app.js",
"test": "node --test test/**/*.test.js",
"migrate": "npx knex migrate:latest",
"rollback": "npx knex migrate:rollback --all",
"seed": "npx knex seed:run"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^6.0.0",
"@fastify/cors": "^10.0.1",
"@fastify/formbody": "^8.0.1",
"@fastify/multipart": "^9.0.1",
"@fastify/sensible": "^6.0.0",
"@fastify/swagger": "^9.4.0",
"@fastify/swagger-ui": "^5.2.0",
"argon2": "^0.41.1",
"axios": "^1.7.8",
"cloudinary": "^2.5.1",
"dotenv": "^16.4.5",
"fastify": "^5.0.0",
"fastify-cli": "^7.0.1",
"fastify-plugin": "^5.0.0",
"graphql-request": "^7.1.2",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"kuromoji": "^0.1.2",
"kuroshiro": "^1.2.0",
"kuroshiro-analyzer-kuromoji": "^1.1.0",
"nodemailer": "^6.9.16",
"pg": "^8.13.1",
"streamifier": "^0.1.1",
"wanakana": "^5.3.1"
},
"devDependencies": {
"@types/bun": "latest",
"nodemon": "^3.1.7"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}