-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (89 loc) · 2.88 KB
/
package.json
File metadata and controls
90 lines (89 loc) · 2.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
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
{
"name": "pomometer-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack ",
"dev:worker": "wrangler dev --config backgroundworker/wrangler.jsonc",
"dev:worker:local-migrations": "wrangler d1 migrations apply pomometer-db --local --config backgroundworker/wrangler.jsonc",
"deploy:worker": "wrangler deploy --config backgroundworker/wrangler.jsonc --minify",
"secrets:staging": "bash scripts/push-secrets.sh staging",
"secrets:production": "bash scripts/push-secrets.sh production",
"build": "NODE_NO_WARNINGS=1 next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:api": "jest --config=jest.api.config.js",
"test:api:watch": "jest --config=jest.api.config.js --watch",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test ",
"test:e2e:headed": "playwright test --ui --headed ",
"prod:build": "scripts/prod-build.sh build",
"deploy": "scripts/prod-build.sh deploy staging",
"deploy:prod": "scripts/prod-build.sh deploy production",
"preview": "scripts/prod-build.sh preview",
"cf-typegen": "wrangler types --env-interface CloudflareEnv ./cloudflare-env.d.ts"
},
"dependencies": {
"@ant-design/icons": "^6.0.0",
"@ant-design/v5-patch-for-react-19": "^1.0.3",
"@cloudflare/workers-types": "^4.20250823.0",
"@formatjs/intl-pluralrules": "^5.4.4",
"@formatjs/intl-relativetimeformat": "^11.4.11",
"@opennextjs/cloudflare": "^1.6.5",
"@prisma/adapter-d1": "^6.14.0",
"@prisma/client": "^6.14.0",
"@reduxjs/toolkit": "^2.8.2",
"@sentry/browser": "^10.5.0",
"@sentry/react": "^10.5.0",
"@sentry/tracing": "^7.120.4",
"antd": "^5.27.1",
"autoprefixer": "^10.4.21",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.1",
"formatjs": "^0.1.1",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"nanoid": "^5.1.5",
"next": "15.4.6",
"postcss": "^8.5.6",
"prop-types": "^15.8.1",
"ramda": "^0.31.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-ga": "^3.3.1",
"react-infinite-scroller": "^1.2.6",
"react-intl": "^7.1.11",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/prop-types": "^15.7.15",
"@types/ramda": "^0.31.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-infinite-scroller": "^1.2.5",
"@types/uuid": "^10.0.0",
"eslint": "^9.34.0",
"eslint-config-next": "15.5.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"msw": "^2.10.5",
"postcss": "^8.4.41",
"prisma": "^6.14.0",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.4.1",
"typescript": "^5",
"wrangler": "^4.32.0"
}
}