-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
{
"name": "obsidian-dbfolder",
"version": "3.5.1",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"release": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest --colors --coverage test",
"sonar": "npx eslint --ignore-path .gitignore src/**/*.ts",
"pretest": "eslint --ignore-path .gitignore src/**/*.ts"
},
"keywords": [
"obsidian",
"obsidian-md",
"obsidian-plugin",
"obsidian-md-plugin"
],
"author": "Rafael Gomez Bermejo",
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "8.3.1",
"esbuild": "0.19.11",
"@testing-library/jest-dom": "6.2.0",
"@testing-library/react": "14.1.2",
"@types/jest": "29.5.11",
"@types/luxon": "3.4.1",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-datepicker": "4.19.5",
"@types/react-dom": "18.2.18",
"@types/react-window": "1.8.8",
"@types/papaparse": "5.3.14",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"builtin-modules": "3.3.0",
"eslint": "8.56.0",
"eslint-plugin-react": "7.33.2",
"jest": "29.7.0",
"jest-mock-extended": "3.0.5",
"jest-environment-jsdom": "29.7.0",
"obsidian": "1.4.11",
"ts-jest": "29.1.1",
"tslib": "2.6.2",
"typescript": "5.3.3"
},
"dependencies": {
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.15.5",
"@mui/material": "5.15.5",
"@popperjs/core": "2.11.8",
"@tanstack/match-sorter-utils": "8.11.3",
"@tanstack/react-table": "8.11.6",
"eventemitter3": "5.0.1",
"fuse.js": "7.0.0",
"luxon": "3.4.4",
"monkey-around": "2.3.0",
"obsidian-dataview": "0.5.64",
"obsidian-projects-types": "0.7.1",
"react": "18.2.0",
"papaparse": "5.4.1",
"react-datepicker": "4.25.0",
"react-dom": "18.2.0",
"react-select": "5.8.0",
"react-window": "1.8.10",
"zustand": "4.4.7"
}
}