-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1019 Bytes
/
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
{
"name": "@family-flix/media-profile-api",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "tsx watch ./src/index.ts --port 9001",
"start": "node dist/server.js",
"build": "esbuild ./src/index.ts --platform=node --target=node12 --legal-comments=none --bundle --minify --outfile=dist/server.js"
},
"dependencies": {
"@hono/node-server": "^1.11.1",
"@panva/hkdf": "^1.1.1",
"@prisma/client": "5.6.0",
"axios": "^1.6.2",
"cheerio": "^1.0.0-rc.12",
"dayjs": "^1.11.10",
"hono": "^4.3.2",
"jose": "^5.2.4",
"js-md5": "^0.8.3",
"lodash": "^4.17.21",
"puppeteer": "^22.12.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/lodash": "^4.17.5",
"@types/node": "^20",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"postcss": "^8",
"prisma": "^5.6.0",
"tailwindcss": "^3.3.0",
"tsx": "^4.9.3",
"typescript": "^5",
"vitest": "^0.34.6"
}
}