forked from mgmeyers/obsidian-kanban
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.75 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
{
"name": "obsidian-sample-plugin",
"version": "0.11.13",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment BUILD:production"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^14.14.37",
"obsidian": "^0.11.13",
"rollup": "^2.32.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-replace": "^2.4.2",
"@textcomplete/core": "^0.1.9",
"@textcomplete/textarea": "^0.1.9",
"@types/js-yaml": "^4.0.1",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^17.0.3",
"babel": "^6.23.0",
"choices.js": "^9.0.1",
"dotenv": "^8.2.0",
"flatpickr": "^4.6.9",
"fuse.js": "^6.4.6",
"immutability-helper": "^3.1.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"monkey-around": "^2.1.0",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-cool-onclickoutside": "^1.6.1",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-redux": "^7.2.3",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-logger": "^3.0.6",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-css-only": "^3.1.0",
"styled-components": "^5.2.3"
}
}