-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.82 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.82 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
{
"name": "preact-template",
"description": "The tiny 16kb preact app that could",
"private": true,
"version": "0.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/bdombro/preact-template.git"
},
"scripts": {
"build": "vite build",
"build:storybook": "storybook build",
"clean": "rm -rf dist playwright-report",
"ci:test": "gh act --artifact-server-path /tmp/artifacts",
"cap:ios:build": "cap build ios",
"cap:ios:init": "cap add ios && cap sync ios",
"cap:ios:xcode": "cap open ios",
"cap:ios:sync": "cap sync ios",
"cap:ios:run": "cap run ios",
"//cap:watch": "using the ionic cli to run cap adds livereload feature",
"cap:ios:watch": "ionic cap run ios --livereload --no-sync",
"//cap:ios:watch:ondevice": "tip: make sure you choose a signing team in xcode before running this command",
"cap:ios:watch:ondevice": "ionic cap run ios --livereload --no-sync --external",
"//ionic:serve": "Needed for ionic cli to work",
"ionic:serve": "NOSSL=true vite",
"lint": "tsc && biome check",
"lint:fix": "biome check --write",
"lint:watch": "npx nodemon -e js,jsx,ts,tsx,css --exec 'npm run lint'",
"precommit": "run-s clean lint build test",
"precommit:install": "echo npm run precommit > .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
"preinstall": "npm run precommit:install",
"preview": "vite preview",
"update": "npx npm-check-updates -u",
"update:dry": "npx npm-check-updates",
"start": "vite",
"storybook": "storybook dev -p 6006",
"test": "playwright test --project=chromium",
"wrangler-deploy": "npm run build && wrangler deploy",
"wrangler-dev": "wrangler dev",
"wrangler-migrate": "npx wrangler d1 migrations apply prod-toody --local",
"wrangler-seed": "wrangler d1 execute prod-toody --local --command \"INSERT INTO users (id, email, code) VALUES ('0000', 'bdombro@gmail.com', 1234);\"",
"wrangler-types": "wrangler types && mv worker-configuration.d.ts src/@types"
},
"engines": {
"node": ">=16.13.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@capacitor/camera": "^8.0.0",
"@capacitor/cli": "^8.0.1",
"@capacitor/core": "^8.0.1",
"@capacitor/device": "^8.0.0",
"@capacitor/ios": "^8.0.1",
"@capacitor/splash-screen": "^8.0.0",
"@ionic/cli": "7.2.1",
"@playwright/test": "^1.57.0",
"@preact/preset-vite": "^2.10.2",
"@preact/signals": "^2.6.0",
"@slimr/mdi-paths": "^2.1.73",
"@slimr/react": "^3.0.99",
"@slimr/util": "^3.2.76",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-links": "10.1.11",
"@storybook/react-vite": "10.1.11",
"@types/react": "^19.2.9",
"npm-run-all": "^4.1.5",
"preact": "^10.28.2",
"storybook": "10.1.11",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-mkcert": "^1.17.9",
"vite-plugin-pwa": "^1.2.0",
"workbox-window": "^7.4.0",
"wrangler": "^4.59.3"
}
}