-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.69 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.69 KB
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
{
"name": "web",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build:ts && tsc -p test/tsconfig.json && tap --ts \"test/**/*.test.ts\"",
"start": "npm run build:ts && fastify start -l info dist/app.js",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"dev": "npm run build:ts && concurrently -k -p \"[{name}]\" -n \"TypeScript,App,Turso\" -c \"yellow.bold,cyan.bold,blue.bold\" \"npm:watch:ts\" \"npm:dev:start\" \"npm:dev:sqlite\"",
"dev:sqlite": "turso dev -f dev.db",
"dev:start": "NODE_ENV='development' fastify start --ignore-watch='dev.db ts$' -w -l info -P dist/app.js",
"compile-schemas": "json2ts -i src/schemas -o src/@types"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.7.1",
"@fastify/helmet": "^11.0.0",
"@fastify/sensible": "^5.0.0",
"@fastify/type-provider-typebox": "^3.3.0",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^2.1.1",
"@libsql/client": "^0.3.0",
"@sinclair/typebox": "^0.29.4",
"axios": "^1.4.0",
"bullmq": "^4.6.0",
"fastify": "^4.0.0",
"fastify-cli": "^5.7.1",
"fastify-plugin": "^4.0.0",
"fluent-ffmpeg": "^2.1.2",
"form-data": "^4.0.0",
"ioredis": "^5.3.2",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/tap": "^15.0.5",
"concurrently": "^7.0.0",
"dotenv": "^16.3.1",
"fastify-tsconfig": "^1.0.1",
"json-schema-to-typescript": "^13.0.2",
"tap": "^16.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}