-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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": "danielturichdotcomapi",
"version": "1.0.0",
"private": true,
"description": "API for danielTurcich.com",
"author": {
"email": "[email protected]",
"name": "Daniel Turcich",
"url": "https://danielTurcich.com"
},
"type": "module",
"engines": {
"node": "^22.0.0",
"pnpm": "^9.0.1"
},
"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": "eslint \"./src/*.ts\" && 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": {
"@google-cloud/local-auth": "^3.0.1",
"cors": "^2.8.5",
"google-auth-library": "^9.14.1",
"googleapis": "^144.0.0",
"hyper-express": "^6.16.4"
},
"devDependencies": {
"@parcel/config-default": "^2.12.0",
"@types/cors": "^2.8.17",
"@types/node": "^22.5.5",
"@types/serve-static": "^1.15.7",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"googleapis-common": "^7.2.0",
"husky": "^9.1.6",
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"undici": "^6.19.8"
}
}