-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "replay-pallas-api",
"version": "1.0.0",
"description": "A simple API for storing replays and their metadata.",
"main": "src/index.ts",
"author": "Stanislas Daniel Claude Dolcini",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "tsc -p tsconfig.json && node ./dist/index.js",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@fastify/cors": "^8.2.0",
"@fastify/schedule": "^4.1.1",
"@fastify/swagger": "^8.12.0",
"@fastify/swagger-ui": "^1.10.1",
"adm-zip": "^0.5.10",
"better-sqlite3": "^11.4.0",
"fastify": "^4.25.2",
"jose": "^5.2.0",
"snappy": "^7.2.2",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"toad-scheduler": "^3.0.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.21.4"
},
"devDependencies": {
"@fastify/multipart": "^7.4.1",
"@types/adm-zip": "^0.5.0",
"@types/better-sqlite3": "^7.6.8",
"@types/node": "^18.14.1",
"@types/sqlite3": "^3.1.11",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
}
}