-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1008 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1008 Bytes
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
{
"name": "billtap",
"version": "0.0.0",
"description": "Full-stack Stripe-style billing sandbox for local development and CI scenarios.",
"private": true,
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"smoke:sample": "npm --prefix examples/sample-app run smoke",
"smoke:sdk": "node tests/sdk-smoke/stripe-sdk-smoke.mjs",
"smoke:web": "node tests/web-smoke/smoke-web.mjs",
"smoke:web:install": "playwright install --with-deps --only-shell chromium"
},
"dependencies": {
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"stripe": "^22.1.1",
"typescript": "^5.9.3",
"vite": "^7.2.7"
}
}