-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.59 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.59 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
{
"name": "travelsplit",
"private": true,
"version": "0.0.7",
"type": "module",
"description": "Split travel expenses with friends and family",
"keywords": [
"travel",
"expenses",
"split",
"pwa",
"react"
],
"author": "TravelSplit",
"homepage": "https://travelsplit.softwarepush.workers.dev",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "jest",
"cy:e2e": "cypress run --e2e",
"cy:open": "cypress open --e2e",
"cy:run": "cypress run --e2e --headless",
"deploy": "npm run build && npx wrangler deploy -e main --var GIT_BRANCH:$(git branch --show-current) --var GIT_SHA:$(git rev-parse --short HEAD)"
},
"dependencies": {
"@reduxjs/toolkit": "^2.5.0",
"lucide-react": "^0.539.0",
"lz-string": "^1.5.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"react-router": "^7.1.1",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"cypress": "^15.0.0",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.3.0",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.24.0",
"vite": "^7.0.4"
}
}