-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.09 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
{
"name": "seriph",
"version": "0.2.0",
"private": true,
"type": "module",
"packageManager": "npm@11.8.0",
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "npm run lint:lines && npm run lint:secrets && npm run lint:web && npm run lint:functions",
"lint:lines": "node scripts/check-line-count.mjs",
"lint:secrets": "node scripts/check-no-secrets.mjs",
"lint:web": "eslint --report-unused-disable-directives .",
"lint:functions": "npm run lint --prefix functions",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@google-cloud/tasks": "^6.2.3",
"agentation": "^3.0.2",
"dialkit": "^1.4.3",
"firebase": "^12.16.0",
"firebase-admin": "^14.2.0",
"firebase-functions": "^7.3.0",
"fontkit": "^2.0.4",
"framer-motion": "^12.42.2",
"fuse.js": "^7.5.0",
"idb": "^8.0.3",
"interface-kit": "^0.1.3",
"jszip": "^3.10.1",
"lucide-react": "^1.26.0",
"next": "^16.2.11",
"opentype.js": "^2.0.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"uuid": "^14.0.1"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^5.0.1",
"@tailwindcss/postcss": "^4.3.3",
"@types/fontkit": "^2.0.9",
"@types/node": "^26.1.1",
"@types/opentype.js": "^1.3.10",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/react-test-renderer": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.11",
"fake-indexeddb": "^6.2.5",
"postcss": "^8.5.22",
"react-test-renderer": "^19.2.8",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"overrides": {
"fast-xml-parser": "5.10.1",
"gaxios": {
"uuid": "11.1.1"
},
"postcss": "$postcss",
"protobufjs": "7.6.5",
"retry-request": "8.0.3",
"rimraf": "6.1.3",
"sharp": "0.35.3",
"teeny-request": "10.1.3"
}
}