-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 1.19 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
{
"name": "obsidian-attendance",
"version": "0.6.1",
"description": "This plugin helps you track attendance.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint src test",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@tsconfig/svelte": "^3.0.0",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"builtin-modules": "^3.2.0",
"esbuild": "^0.14.38",
"esbuild-svelte": "^0.7.0",
"eslint": "^8.15.0",
"husky": "^8.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"moment": "^2.29.3",
"obsidian": "latest",
"svelte-preprocess": "^4.10.6",
"ts-jest": "^28.0.2",
"tslib": "2.4.0",
"typescript": "4.6.4"
},
"dependencies": {
"svelte-flatpickr": "^3.2.6"
}
}