-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.71 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "siv-web",
"version": "1.1.0",
"private": true,
"scripts": {
"audit": "npx --yes npm-audit-summary",
"build": "next build",
"cypress": "cypress open --config-file cypress/cypress-config.json",
"dev": "next dev",
"e2e": "cypress run --config-file cypress/cypress-config.json",
"format": "prettier --write **/*.{js,ts,tsx}",
"postinstall": "patch-package",
"lint": "eslint src/ pages/ --cache",
"start": "next start",
"test": "bun lint && bun typecheck && bun unit && bun e2e",
"test:crypto": "bun test src/crypto/tests/*.test.ts",
"typecheck": "tsc --pretty --noEmit",
"unit": "bun test src"
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run typecheck"
}
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": false,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"resolutions": {
"@types/react": "18.2.6",
"@types/react-dom": "18.2.0"
},
"dependencies": {
"@ant-design/icons": "5.6.1",
"@codemirror/lang-json": "6.0.2",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@fingerprintjs/fingerprintjs-pro": "3.12.12",
"@mdx-js/loader": "2.3.0",
"@mui/material": "5.18.0",
"@next/mdx": "16.2.10",
"@noble/ed25519": "1.6.0",
"@peculiar/webcrypto": "1.7.1",
"@sentry/browser": "10.66.0",
"@supabase/supabase-js": "1.35.7",
"@types/bluebird": "3.5.42",
"@types/lodash-es": "4.17.12",
"@types/react": "18.2.6",
"@types/react-dom": "18.3.7",
"@uiw/codemirror-extensions-zebra-stripes": "4.25.11",
"@uiw/codemirror-theme-github": "4.25.11",
"@uiw/react-codemirror": "4.25.11",
"@vercel/og": "0.8.6",
"bigint-mod-arith": "3.3.1",
"bluebird": "3.7.2",
"codemirror": "6.0.2",
"cookies": "0.8.0",
"cypress-mailslurp": "1.11.1",
"email-validator": "2.0.4",
"firebase-admin": "11.11.1",
"jsonwebtoken": "9.0.3",
"lodash-es": "4.18.1",
"lucide-react": "0.576.0",
"mailgun-js": "0.22.0",
"marked": "16.4.2",
"moment": "2.30.1",
"next": "16.2.10",
"patch-package": "6.5.1",
"pdf-lib": "1.17.1",
"postinstall-postinstall": "2.1.0",
"pusher": "4.0.2",
"pusher-js": "7.6.0",
"qr-code-styling": "1.9.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-flip-move": "3.0.5",
"react-linkify": "1.0.0-alpha",
"react-markdown": "10.1.0",
"react-scroll": "1.9.3",
"react-signature-pad-wrapper": "3.4.1",
"react-transition-group": "4.4.5",
"smoothscroll-polyfill": "0.4.4",
"swr": "2.4.2",
"throat": "6.0.2",
"timeago-react": "3.0.7",
"timeago.js": "4.0.2",
"twilio": "5.13.1",
"ua-parser-js": "0.7.41"
},
"devDependencies": {
"@eslint/js": "9.39.5",
"@types/bun": "1.3.14",
"@types/cookies": "0.7.10",
"@types/jsonwebtoken": "8.5.9",
"@types/mailgun-js": "0.22.19",
"@types/node": "22.20.1",
"@types/react-linkify": "1.0.4",
"@types/react-scroll": "1.8.10",
"@types/smoothscroll-polyfill": "0.3.4",
"@types/ua-parser-js": "0.7.39",
"autoprefixer": "10.5.4",
"cypress": "9.4.1",
"cypress-localstorage-commands": "1.7.0",
"dotenv": "16.6.1",
"eslint": "9.39.5",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-cypress": "4.3.0",
"eslint-plugin-perfectionist": "4.15.1",
"eslint-plugin-react": "7.37.5",
"husky": "4.3.8",
"postcss": "8.5.19",
"prettier": "2.8.8",
"prettier-plugin-packagejson": "2.5.22",
"tailwindcss": "3.4.19",
"typescript": "5.9.3",
"typescript-eslint": "8.64.0"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}