generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
76 lines (76 loc) · 2.3 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
{
"name": "obsidian-dataloom",
"version": "8.16.1",
"description": "Weave together data from diverse sources into different views. Inspired by Excel Spreadsheets and Notion.so.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"dev-with-tools": "node esbuild.config.mjs tools",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "jest",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "DecafDev",
"license": "GPL-3.0+",
"devDependencies": {
"@babel/preset-env": "^7.19.0",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@simbathesailor/use-what-changed": "^2.0.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/codemirror": "^5.60.7",
"@types/jest": "^29.0.0",
"@types/lodash": "^4.14.180",
"@types/markdown-it": "^12.2.3",
"@types/mock-fs": "^4.13.1",
"@types/node": "^18.7.15",
"@types/papaparse": "^5.3.7",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"babel-jest": "^29.0.2",
"builtin-modules": "^3.2.0",
"esbuild": "^0.19.11",
"eslint": "^8.41.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"jest": "^29.5.0",
"jest-date-mock": "^1.0.8",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^22.1.0",
"obsidian": "^1.4.11",
"react-test-renderer": "^18.2.0",
"renamer": "^4.0.0",
"ts-jest": "^29.0.5",
"tslib": "^2.4.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.5",
"codemirror": "^6.0.1",
"dayjs": "^1.11.10",
"fuzzysort": "^2.0.4",
"htmlparser2": "^9.0.0",
"js-logger": "^1.6.1",
"jsondiffpatch": "^0.5.0",
"lucide": "^0.241.0",
"markdown-it": "^13.0.1",
"markdown-table": "^3.0.3",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.4",
"react-virtuoso": "^4.6.0",
"recoil": "^0.7.7",
"runtypes": "^6.7.0",
"ts-node": "^10.9.1",
"uuid": "^9.0.0"
}
}