-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "obsidian-periodic-notes",
"version": "0.0.17",
"description": "Create/manage daily, weekly, and monthly notes",
"author": "liamcain",
"main": "main.js",
"license": "MIT",
"scripts": {
"lint": "svelte-check && eslint . --ext .ts && tsc --noEmit",
"lint:fix": "svelte-check && eslint . --ext .ts --fix",
"dev": "node --experimental-json-modules esbuild.config.mjs",
"build": "yarn run lint && node --experimental-json-modules esbuild.config.mjs production",
"release": "standard-version"
},
"standard-version": {
"t": ""
},
"dependencies": {
"@popperjs/core": "2.11.5",
"lodash": "4.17.21",
"obsidian": "0.14.4",
"svelte": "3.47.0",
"svelte-writable-derived": "^2.1.3",
"tslib": "2.3.1"
},
"devDependencies": {
"@tsconfig/svelte": "3.0.0",
"@types/lodash": "4.14.181",
"@types/moment": "2.13.0",
"@types/node": "17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"builtin-modules": "^3.2.0",
"dotenv": "16.0.0",
"esbuild": "0.14.36",
"esbuild-svelte": "0.7.0",
"eslint": "8.13.0",
"eslint-plugin-import": "^2.26.0",
"moment": "2.29.2",
"sass": "^1.50.0",
"standard-version": "^9.3.2",
"svelte-check": "2.7.0",
"svelte-preprocess": "4.10.6",
"typescript": "^4.6.3"
},
"resolutions": {
"lodash": "4.17.21",
"moment": "2.29.2"
}
}