This repository has been archived by the owner on Jul 17, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
52 lines (52 loc) · 1.66 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
{
"name": "slated-obsidian",
"version": "0.5.2",
"description": "Task management - schedule, move, and repeat tasks",
"main": "main.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watchAll",
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js",
"prettier": "prettier --write 'src/**/*.+(ts|tsx|json|html|css)'",
"eslint": "eslint . --ext .ts,.tsx --fix"
},
"keywords": [],
"author": "Tony Grosinger",
"license": "GPL-3.0",
"devDependencies": {
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-node-resolve": "11.0.1",
"@rollup/plugin-typescript": "8.1.0",
"@testing-library/svelte": "3.0.2",
"@tsconfig/svelte": "1.0.10",
"@types/jest": "26.0.18",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "4.6.0",
"@typescript-eslint/parser": "4.6.0",
"eslint": "7.12.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.3",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-simple-import-sort": "5.0.3",
"jest": "26.6.3",
"jest-mock-extended": "1.0.10",
"moment": "2.29.1",
"obsidian": "https://github.com/obsidianmd/obsidian-api/archive/eb459522e7e35983e3e6c2358301a21b26de7b64.tar.gz",
"rollup": "2.35.1",
"rollup-plugin-svelte": "7.0.0",
"svelte-check": "1.1.34",
"svelte-jester": "1.3.0",
"svelte-preprocess": "4.6.9",
"ts-jest": "26.4.4",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"dependencies": {
"neverthrow": "3.0.0",
"obsidian-calendar-ui": "0.3.12",
"obsidian-daily-notes-interface": "0.9.2",
"rrule": "2.6.8",
"svelte": "3.32.3"
}
}