-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.01 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.01 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
{
"name": "bun-react-template",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --hot src/index.ts",
"build": "rm -rf dist && bun build ./src/design5/index.html --outdir=dist --target=browser --minify --define:process.env.NODE_ENV='\"production\"' --env='BUN_PUBLIC_*'",
"build:debug": "rm -rf dist && bun build ./src/design5/index.html --outdir=dist --sourcemap --target=browser --minify --define:process.env.NODE_ENV='\"production\"' --env='BUN_PUBLIC_*'",
"start": "NODE_ENV=production bun src/index.ts",
"test": "bunx playwright test",
"test:firefox": "bunx playwright test --project=firefox",
"test:chrome": "bunx playwright test --project=chromium"
},
"dependencies": {
"@posthog/react": "^1.8.0",
"posthog-js": "^1.350.0",
"react": "^19",
"react-dom": "^19"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19",
"playwright": "^1.58.2"
}
}