This repository was archived by the owner on Jun 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.93 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.93 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
{
"name": "draw",
"version": "0.0.0",
"license": "MIT",
"private": true,
"packageManager": "yarn@3.6.1",
"type": "module",
"scripts": {
"start": "vite",
"start:pages": "vite & wrangler pages dev --compatibility-date=2024-08-12 dist",
"build": "vite build",
"build-for-deploy": "echo \"$SECRETS_DECRYPTION_KEY\" | yarn run secrets:decrypt && yarn run build",
"secrets:encrypt": "gpg --symmetric --cipher-algo AES256 secrets.json",
"secrets:decrypt": "gpg --quiet --yes --batch --decrypt --passphrase=\"$(cat)\" --out secrets.json secrets.json.gpg"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250412.0",
"@headlessui/react": "^2.2.2",
"@tailwindcss/postcss": "^4.1.6",
"@types/resize-observer-browser": "^0.1.11",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"eslint": "^7.5.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^4.1.5",
"typescript": "^5.8.3",
"vite": "^6.2.6",
"vite-plugin-pwa": "^1.0.0",
"vite-plugin-svgr": "^4.3.0",
"workbox-window": "^7.3.0"
},
"dependencies": {
"@msgpack/msgpack": "^2.7.0",
"@odiak/fit-curve": "^0.3.2",
"@odiak/iterate": "^0.0.4",
"@qnighy/dedent": "^0.1.1",
"@sentry/react": "^8.34.0",
"@types/classnames": "^2.2.10",
"@types/color": "^3.0.3",
"@types/cookie": "^0.5.1",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"@types/styled-components": "^5.1.25",
"classnames": "^2.2.6",
"color": "^4.2.3",
"cookie": "^0.5.0",
"firebase": "^11.0.1",
"fp-ts": "^2.11.1",
"io-ts": "^2.2.16",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-is": "^19.1.0",
"react-router-dom": "^6.24.1",
"web-auth-library": "^1.0.3"
}
}