-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.27 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
{
"name": "obsidian-gamified-pkm",
"version": "0.0.92",
"description": "Enhance your Personal Knowledge Management with gamification elements. Boost motivation and achieve growth as you engage with your PKM.",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"rbuild": "rollup --config rollup.config.js",
"dev2": "node esbuild.config.mjs --config rollup.config.js -w",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint:js": "eslint *.js",
"lint": "npm run lint:js",
"lint:markdown": "markdownlint \"**/*.md\"",
"test": "jest"
},
"keywords": [],
"author": "Andreas Trebing",
"license": "MIT",
"dependencies": {
"chart.js": "^4.4.4",
"crypto-js": "^4.1.1",
"date-fns": "^2.30.0",
"markdown-it": "^13.0.1",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@jridgewell/sourcemap-codec": "^1.4.15",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.2",
"@tsconfig/svelte": "^3.0.0",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.5.4",
"@types/node": "^16.11.6",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"esbuild-svelte": "^0.7.3",
"eslint": "8.48.0",
"jest": "^29.6.3",
"jest-mock-extended": "^3.0.5",
"lint": "^1.1.2",
"markdownlint": "^0.30.0",
"obsidian": "^1.7.2",
"obsidian-dataview": "^0.5.67",
"rollup": "^2.79.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postprocess": "github:brettz9/rollup-plugin-postprocess#update",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"svelte": "^3.57.0",
"svelte-preprocess": "^5.0.3",
"ts-jest": "^29.1.1",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}