forked from st3v3nmw/obsidian-spaced-repetition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "obsidian-spaced-repetition",
"version": "1.7.2",
"description": "Fight the forgetting curve by reviewing flashcards & entire notes.",
"main": "main.js",
"scripts": {
"build": "node esbuild.config.mjs production",
"dev": "node esbuild.config.mjs",
"format": "yarn prettier --write .",
"lint": "yarn prettier --check .",
"test": "jest --coverage",
"prepare": "husky install"
},
"author": "Stephen Mwangi",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.5",
"@types/vhtml": "^2.2.4",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"builtin-modules": "^3.2.0",
"esbuild": "~0.13.0",
"eslint": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"moment": "^2.29.1",
"obsidian": "^0.13.11",
"prettier": "^2.5.1",
"ts-jest": "^27.0.4",
"tslib": "2.3.1",
"typescript": "4.5.4",
"vhtml": "^2.2.0"
},
"dependencies": {
"chart.js": "^3.7.0",
"pagerank.js": "^1.0.2"
}
}