-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.42 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
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
{
"name": "create-iris",
"private": false,
"version": "1.0.7",
"type": "module",
"engines": {
"node": ">=16.0.0 <17.0.0 || >=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/irislib/iris-docs.git"
},
"description": "Tool for creating IrisDB projects",
"author": "Martti Malmi",
"license": "MIT",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"preview": "vite preview",
"test": "vitest"
},
"bin": {
"create-iris": "create-iris/create-iris.js"
},
"dependencies": {
"@noble/hashes": "^1.4.0",
"@nostr-dev-kit/ndk": "^2.10.0",
"@nostr-dev-kit/ndk-cache-dexie": "^2.5.1",
"@remixicon/react": "^4.2.0",
"@tiptap/extension-collaboration": "^2.3.1",
"@tiptap/extension-highlight": "^2.3.1",
"@tiptap/extension-link": "^2.3.1",
"@tiptap/extension-task-item": "^2.3.1",
"@tiptap/extension-task-list": "^2.3.1",
"@tiptap/pm": "^2.3.1",
"@tiptap/react": "^2.3.1",
"@tiptap/starter-kit": "^2.3.1",
"classnames": "^2.5.1",
"debug": "^4.3.4",
"emoji-picker-react": "^4.9.2",
"fuse.js": "^7.0.0",
"irisdb": "^1.0.11",
"irisdb-hooks": "^1.0.11",
"irisdb-nostr": "^1.0.11",
"lodash": "^4.17.21",
"minidenticons": "^4.2.1",
"nostr-tools": "^2.5.1",
"prompts": "^2.4.2",
"qr-code-styling": "^1.6.0-rc.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.0",
"sanitize-html": "^2.13.0",
"uuid": "^9.0.1",
"yjs": "^13.6.15"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/debug": "^4.1.12",
"@types/diff": "^5.2.0",
"@types/lodash": "^4.17.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/sanitize-html": "^2.11.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"daisyui": "^4.10.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-simple-import-sort": "^12.1.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"vite": "^5.2.11",
"vitest": "^1.5.3"
}
}