-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (30 loc) · 874 Bytes
/
package.json
File metadata and controls
31 lines (30 loc) · 874 Bytes
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
{
"name": "tt-toolk1t",
"version": "1.0.0",
"description": "TikTok Toolkit - A collection of TikTok utilities and tools",
"main": "dist/server.js",
"scripts": {
"build": "npm run build:frontend && npm run build:backend",
"build:backend": "tsc",
"build:frontend": "cd frontend && npm install && npm run build",
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"dev:frontend": "cd frontend && npm run dev",
"type-check": "tsc --noEmit"
},
"keywords": ["tiktok", "toolkit", "downloader", "api", "utilities"],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}