-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "draw",
"version": "0.0.0",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"start": "wrangler pages dev --compatibility-date=2024-08-12 -- vite",
"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.20230807.0",
"@types/resize-observer-browser": "^0.1.4",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^7.5.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "^2.0.5",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-plugin-pwa": "^0.20.5",
"vite-plugin-svgr": "^4.2.0",
"workbox-window": "^7.3.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@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": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@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": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-router-dom": "^6.24.1",
"styled-components": "^5.3.5",
"web-auth-library": "^1.0.3"
}
}