forked from Quorafind/Obsidian-Thino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.77 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
{
"name": "obsidian-memos",
"version": "1.9.6",
"description": "A Quick Capture Plugin For Obsidian Daily Notes",
"author": "boninall",
"main": "main.js",
"scripts": {
"lint": "eslint . --ext .ts",
"dev": "npm run lint && vite build --watch --mode development",
"lint:fix": "npm run lint -- -- -- fix",
"prettier": "npx prettier src test --check",
"prettier:fix": "npm run prettier -- -- write",
"format": "npm run prettier:fix && npm run lint:fix",
"build:nolint": "NODE_ENV=production rollup -c",
"build": "vite build",
"test": "jest",
"test:watch": "yarn test -- --watch"
},
"dependencies": {
"obsidian": "0.14.4",
"obsidian-daily-notes-interface": "^0.9.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tiny-undo": "^0.0.10"
},
"devDependencies": {
"@honkhonk/vite-plugin-svgr": "^1.1.0",
"@jukben/emoji-search": "^2.0.1",
"@popperjs/core": "^2.11.2",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/recompose": "^0.30.10",
"@types/webscopeio__react-textarea-autocomplete": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vitejs/plugin-react": "^1.2.0",
"@webscopeio/react-textarea-autocomplete": "^4.9.1",
"babel": "^6.23.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "1.7.0",
"focus-trap-react": "^8.9.2",
"less": "^4.1.2",
"obsidian-dataview": "0.5.13",
"prettier": "2.6.0",
"react-rnd": "^10.3.5",
"react-usestateref": "^1.0.8",
"typescript": "^4.5.5",
"vite": "^2.8.4",
"vite-plugin-react-svg": "^0.2.0"
},
"license": "MIT"
}