-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "gif-convert-api",
"version": "0.0.1",
"description": "Simple authenticated API to convert video to GIF",
"main": "index.ts",
"repository": "TODO",
"author": "Jonas van den Berg",
"license": "MIT",
"private": true,
"dependencies": {
"@fastify/autoload": "^6.0.1",
"@fastify/basic-auth": "^6.0.1",
"@fastify/env": "^5.0.1",
"@fastify/type-provider-typebox": "^5.0.0",
"@pitininja/envious": "^3.3.1",
"@sinclair/typebox": "^0.33.12",
"bcrypt": "^5.1.1",
"fastify": "^5.0.0",
"fluent-ffmpeg": "^2.1.3",
"json-stringify-deterministic": "^1.0.12",
"lru-cache": "^11.0.1",
"tmp": "^0.2.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/bcrypt": "^5.0.2",
"@types/fluent-ffmpeg": "^2.1.26",
"@types/node": "^22.7.4",
"@types/tmp": "^0.2.6",
"rimraf": "^6.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2"
},
"scripts": {
"dev": "ts-node-dev --project tsconfig.json src/index.ts",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/index.js"
}
}