-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.11 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "customs-calculator",
"version": "1.0.0",
"description": "Philippines Customs Duty & Compliance Calculator - Website",
"homepage": "./",
"author": "NobleStripes",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.19.0",
"npm": ">=10"
},
"scripts": {
"dev": "concurrently \"npm run dev:api\" \"npm run dev:web\"",
"dev:api": "tsx watch src/server/index.ts",
"dev:web": "vite",
"build": "npm run build:web && npm run build:api",
"build:web": "vite build",
"build:api": "esbuild src/server/index.ts --bundle --platform=node --format=esm --packages=external --outfile=dist/server/index.mjs",
"start": "node dist/server/index.mjs",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx,json,css,md}\"",
"release:check": "node scripts/check-release-consistency.mjs",
"release:prepare": "npm run release:check && npm run lint && npm test"
},
"dependencies": {
"axios": "^1.7.0",
"cheerio": "^1.2.0",
"date-fns": "^3.6.0",
"express": "^4.18.2",
"express-rate-limit": "^8.4.1",
"fuse.js": "^7.3.0",
"node-cron": "^3.0.3",
"pdf-parse": "^2.4.5",
"pdfkit": "^0.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"read-excel-file": "^9.0.6",
"sqlite3": "^6.0.1",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"@types/node-cron": "^3.0.11",
"@types/pdf-parse": "^1.1.5",
"@types/pdfkit": "^0.17.6",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/sqlite3": "^3.1.11",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@vitejs/plugin-react": "^5.0.4",
"concurrently": "^9.1.2",
"esbuild": "^0.28.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"prettier": "^3.1.1",
"tsx": "^4.20.6",
"typescript": "^5.3.3",
"vite": "^8.0.8",
"vitest": "^4.1.4"
}
}