-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "danielturichdotcomapi",
"version": "1.0.0",
"private": true,
"description": "API for danielTurcich.com",
"author": {
"email": "packagejson@danielTurcich.com",
"name": "Daniel Turcich",
"url": "https://danielTurcich.com"
},
"type": "module",
"engines": {
"node": "^24.0.0",
"pnpm": "^10.12.4"
},
"source": "src/main.ts",
"module": "dist/module.js",
"scripts": {
"serve": "pnpm build && pnpm start",
"start": "node ./dist/module.js",
"build": "parcel build --no-source-maps",
"lint:check": "oxlint && echo lint:check done",
"format:check": "prettier --check \"./src/**.ts\" && echo format:check done",
"build:check": "pnpm build && echo build:check done",
"checks": "pnpm lint:check && pnpm format:check && pnpm build",
"prepare": "husky"
},
"dependencies": {
"@fastify/cors": "^11.1.0",
"@google-cloud/local-auth": "^3.0.1",
"fastify": "^5.6.2",
"google-auth-library": "^9.14.1",
"googleapis": "^144.0.0"
},
"devDependencies": {
"@parcel/config-default": "^2.12.0",
"@types/node": "^24.10.1",
"googleapis-common": "^7.2.0",
"husky": "^9.1.6",
"oxlint": "^1.28.0",
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"typescript": "^5.9.3",
"undici": "^7.16.0"
}
}