-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
102 lines (100 loc) · 2.95 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "mdsilo-app",
"version": "0.5.10",
"private": true,
"license": "AGPL-3.0-or-later",
"homepage": "https://mdsilo.com",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "react-scripts test --transformIgnorePatterns \"node_modules/(?!@tauri-apps)/\"",
"lint": "eslint . --ext .tsx,.ts",
"fix": "prettier --write src",
"tc": "tsc",
"tauri": "tauri"
},
"dependencies": {
"codemirror": "6.0.0",
"@codemirror/commands": "6.0.0",
"@codemirror/lang-markdown": "6.0.0",
"@codemirror/lang-json": "6.0.0",
"@codemirror/language-data": "6.0.0",
"@codemirror/state": "6.0.0",
"@codemirror/view": "6.0.0",
"@headlessui/react": "^1.7.19",
"@popperjs/core": "^2.11.8",
"@react-spring/web": "^9.7.3",
"@tabler/icons-react": "^2.42.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.12",
"@tauri-apps/api": "1.6.0",
"@tippyjs/react": "^4.2.6",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"d3-drag": "^3.0.0",
"d3-force": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"fuse.js": "^6.6.2",
"immer": "9.0.21",
"is-hotkey": "^0.2.0",
"mdsmirror": "0.0.31",
"mdsmap": "0.0.3",
"html2canvas": "1.4.1",
"jspdf": "2.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-highlight-words": "^0.20.0",
"react-popper": "^2.3.0",
"react-scripts": "^5.0.1",
"react-virtual": "^2.10.4",
"react-virtualized": "^9.22.5",
"styled-components": "5.3.6",
"tailwindcss": "^3.4.3",
"zustand": "^3.7.2"
},
"devDependencies": {
"@tauri-apps/cli": "1.6.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.4",
"@types/d3-drag": "^3.0.7",
"@types/d3-force": "^3.0.10",
"@types/d3-selection": "^3.0.10",
"@types/d3-zoom": "^3.0.8",
"@types/is-hotkey": "^0.1.10",
"@types/jest": "^29.1.2",
"@types/node": "^20.11.19",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/react-highlight-words": "^0.16.7",
"@types/react-virtualized": "^9.21.29",
"@types/tailwindcss": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"autoprefixer": "^10.4.17",
"eslint": "8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.7.2",
"postcss": "8.4.22",
"prettier": "2.7.1",
"typescript": "^5.1.6"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}