-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "sunoh_api",
"version": "1.0.0",
"description": "Fastify vercel serverless starter template",
"author": "Ashish Kumar",
"main": "api/dev-server.ts",
"license": "MIT",
"engines": {
"node": ">= 18.12"
},
"scripts": {
"start": "node -r dotenv/config dist/api/dev-server.js",
"dev": "cross-env NODE_ENV=development nodemon",
"clean": "rimraf coverage build tmp dist",
"prebuild": "npm run lint",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.json",
"lint": "biome lint --write --unsafe src/",
"format": "biome format --write .",
"prepare": "husky",
"start:vercel": "vercel dev",
"deploy:dev": "vercel deploy",
"deploy:prod": "vercel deploy --prod"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"chalk": "^5.3.0",
"colorthief": "^2.6.0",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"fastify": "^5.1.0",
"form-data": "^4.0.1",
"install": "^0.13.0",
"nanoid": "^5.0.8",
"npm": "^10.9.1",
"tslib": "~2.8.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jest": "~29.5",
"@types/node": "~22",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"rimraf": "~6.0",
"ts-jest": "~29.2",
"tsx": "^4.19.2",
"typescript": "~5.7",
"vercel": "^39.1.1"
}
}