-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.75 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "estateman-backend",
"version": "0.11.0",
"type": "module",
"module": "./dist/index.mjs",
"scripts": {
"start": "wrangler dev -e staging src/index.ts --port 3000",
"start.bak": "wrangler dev -e staging src/index.ts --local --persist --port 3000",
"build:frontend:debug": "cd frontend && npm run build:dev",
"build:frontend:deploy": "cd frontend && npm run build:deploy",
"deploy": "wrangler deploy src/index.ts -e production",
"test:backend": "clear && npm run build && node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
"test:frontend": "cd frontend && npm test",
"build": "node build.js",
"release": "release-it",
"monitor:production": "wrangler tail estateman_cfw -e production"
},
"license": "ISC",
"keywords": [],
"author": "Simon Ho",
"repository": {
"type": "git",
"url": "https://github.com/simonho288/estateman_backend.git"
},
"bugs": {
"url": "https://github.com/simonho288/estateman_backend/issues"
},
"homepage": "https://github.com/simonho288/estateman_backend#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.226.0",
"@aws-sdk/s3-request-presigner": "^3.226.0",
"@tsndr/cloudflare-worker-jwt": "^2.1.4",
"get-current-line": "^6.6.0",
"hono": "^2.7.6",
"moment": "^2.29.4",
"nanoid": "^4.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230221.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@databases/split-sql-query": "^1.0.3",
"@databases/sql": "^3.2.0",
"@miniflare/tre": "^3.0.0-next.8",
"@release-it/conventional-changelog": "^5.1.1",
"@types/jest": "^27.5.1",
"@types/node": "^18.11.11",
"@types/node-fetch": "^2.6.2",
"better-sqlite3": "^7.6.2",
"esbuild": "^0.15.14",
"esbuild-jest": "^0.5.0",
"husky": "^8.0.2",
"jest": "^28.0.3",
"jest-environment-miniflare": "^2.5.0",
"miniflare": "^2.5.0",
"node-fetch": "^3.3.0",
"release-it": "^15.6.0",
"ts-jest": "^28.0.3",
"typescript": "^4.9.3",
"wrangler": "^3.1.0"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "break",
"section": "Breaking Changes"
}
]
}
}
}
}
}