forked from ivan-lednev/obsidian-day-planner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.85 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "obsidian-day-planner",
"version": "0.16.0",
"description": "A plugin to help you plan your day and setup pomodoro timers",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"format": "prettier --write src && eslint --fix src && stylelint --fix src/**/*.svelte",
"lint": "prettier --check src && eslint src && stylelint src/**/*.svelte && tsc --noEmit && svelte-check src/",
"typescript": "tsc --noEmit",
"test": "jest src/",
"test:coverage": "jest src/ --collectCoverage",
"prepare": "husky install",
"commitlint": "commitlint --edit"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@jest/globals": "^29.6.2",
"@swc/core": "^1.3.83",
"@swc/jest": "^0.2.29",
"@testing-library/jest-dom": "^6.1.2",
"@tsconfig/svelte": "^1.0.13",
"@types/chroma-js": "^2.4.0",
"@types/moment": "^2.13.0",
"@types/node": "^14.17.3",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"builtin-modules": "^3.3.0",
"cross-env": "^7.0.3",
"esbuild": "^0.19.1",
"esbuild-sass-plugin": "^2.10.0",
"esbuild-svelte": "^0.7.4",
"eslint": "^8.46.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-svelte": "^2.32.4",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"ignore-styles": "^5.0.1",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"jsdom": "^16.6.0",
"jsdom-global": "^3.0.2",
"knip": "^2.32.1",
"moment": "^2.29.4",
"nyc": "^15.1.0",
"obsidian-dataview": "^0.5.56",
"postcss-html": "^1.5.0",
"sass": "^1.64.2",
"simple-git": "^3.20.0",
"stylelint": "^15.10.2",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^34.0.0",
"svelte": "^3.59.2",
"svelte-check": "^3.5.1",
"svelte-jester": "^3.0.0",
"svelte-preprocess": "^4.10.7",
"ts-jest": "^29.1.1",
"ts-node": "^9.1.1",
"tslib": "^2.3.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@testing-library/svelte": "^4.0.3",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.197",
"babel": "^6.23.0",
"babel-jest": "^29.6.4",
"chroma-js": "^2.4.2",
"eslint-plugin-jest": "^27.2.3",
"fraction.js": "4.1.1",
"immer": "^10.0.3",
"lodash": "^4.17.21",
"lucide-svelte": "^0.256.0",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-to-markdown": "^2.1.0",
"obsidian": "^1.4.4",
"obsidian-daily-notes-interface": "^0.9.4",
"prettier-plugin-svelte": "^3.0.3",
"stylelint-config-clean-order": "^5.0.1",
"ts-dedent": "^2.2.0",
"typed-assert": "^1.0.9"
}
}