-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.88 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
{
"name": "commit-chronicles",
"version": "1.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"prepare": "lefthook install",
"dev": "concurrently -k -n api,web -c yellow,cyan \"npm:dev:api\" \"npm:dev:web\"",
"dev:api": "tsx watch --env-file-if-exists=.env src/server/index.ts",
"dev:web": "vite",
"build": "npm run build:web && npm run build:api",
"build:web": "vite build",
"build:api": "tsc --project tsconfig.build.json",
"start": "node dist/server/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run --coverage",
"test:watch": "vitest",
"e2e": "playwright test"
},
"dependencies": {
"@google-cloud/storage": "^7.21.0",
"@google-cloud/tasks": "^6.2.3",
"@hono/node-server": "^2.0.8",
"@resvg/resvg-js": "^2.6.2",
"google-auth-library": "^10.9.0",
"hono": "^4.12.29",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"snowflake-sdk": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"commitlint-plugin-rai": "^1.0.1",
"concurrently": "^10.0.3",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"jsdom": "^29.1.1",
"lefthook": "^2.1.10",
"prettier": "^3.9.5",
"tsx": "^4.20.6",
"typescript": "~6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.4",
"vitest": "^4.1.10"
}
}