-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.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
96
97
98
99
100
101
102
103
104
{
"name": "donate-missionbit-org",
"version": "1.0.0",
"description": "Mission Bit's donation portal",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next",
"build": "next build",
"build:cloudflare": "npx vercel build && ([ -d .vercel/output/functions/_error.func ] && rm -rf .vercel/output/functions/_error.func) || true && npx @cloudflare/next-on-pages@1 --skip-build",
"export": "npm run build && next export",
"start": "next start",
"fix": "eslint --fix --ext js,jsx,ts,tsx .",
"lint": "eslint --ext js,jsx,ts,tsx .",
"tsc": "tsc",
"vitest": "vitest",
"test": "vitest --run",
"posttest": "tsc && eslint --ext js,jsx,ts,tsx .",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"prepare": "husky",
"tsx": "NODE_OPTIONS='--import tsx -r dotenv/config' node",
"cron": "export NODE_OPTIONS='--import tsx -r dotenv/config' && node scripts/givebutter-slack.ts && node scripts/givebutter-salesforce.ts",
"cron-cache": "export NODE_OPTIONS='--import tsx -r dotenv/config' && node scripts/cache-google.ts",
"cron-givebutter": "export NODE_OPTIONS='--import tsx -r dotenv/config' && node scripts/givebutter.ts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/missionbit/donate.missionbit.org.git"
},
"keywords": [],
"author": "Mission Bit",
"license": "MIT",
"bugs": {
"url": "https://github.com/missionbit/donate.missionbit.org/issues"
},
"homepage": "https://github.com/missionbit/donate.missionbit.org#readme",
"dependencies": {
"@effect/opentelemetry": "^0.36.2",
"@effect/platform": "^0.64.0",
"@effect/schema": "^0.72.3",
"@headlessui/react": "^2.1.6",
"@opentelemetry/exporter-trace-otlp-http": "^0.53.0",
"@opentelemetry/sdk-metrics": "^1.26.0",
"@opentelemetry/sdk-trace-base": "^1.26.0",
"@opentelemetry/sdk-trace-node": "^1.26.0",
"@opentelemetry/sdk-trace-web": "^1.26.0",
"@sentry/browser": "^8.30.0",
"@slack/web-api": "^7.4.0",
"@stripe/react-stripe-js": "^2.8.0",
"@stripe/stripe-js": "^4.4.0",
"another-name-parser": "^0.1.0",
"clsx": "^2.1.1",
"cross-fetch": "^4.0.0",
"dayjs": "^1.11.13",
"effect": "^3.7.2",
"eslint-config-next": "^14.2.9",
"fast-check": "^3.22.0",
"next": "^14.2.9",
"query-string": "^9.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5",
"smoothscroll-polyfill": "^0.4.4",
"stripe": "^16.10.0",
"us": "^2.0.0",
"use-elapsed-time": "^3.0.4"
},
"devDependencies": {
"@effect/typeclass": "^0.27.0",
"@next/eslint-plugin-next": "^14.2.9",
"@supabase/postgrest-js": "^1.16.1",
"@supabase/supabase-js": "^2.45.4",
"@types/eslint": "^8.56.10",
"@types/google.analytics": "^0.0.46",
"@types/gtag.js": "^0.0.20",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/smoothscroll-polyfill": "^0.3.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-vitest": "^0.4.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"sass": "^1.78.0",
"tsx": "^4.19.0",
"typescript": "^5.6.2",
"vitest": "^2.0.5"
}
}