generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
75 lines (75 loc) · 2.69 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
{
"name": "obsidian-task-archiver",
"version": "0.26.1",
"description": "Obsidian Task Archiver",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.mjs --watch",
"build": "rollup --config rollup.config.mjs --environment BUILD:production",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"format": "eslint --fix src && prettier --write src",
"typescript": "tsc --noEmit",
"lint": "npm run typescript && eslint src && prettier --check src",
"prepare": "husky install"
},
"keywords": [],
"author": "Ivan Lednev",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.16.7",
"@optimize-lodash/rollup-plugin": "^3.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@solidjs/testing-library": "^0.6.1",
"@testing-library/dom": "^9.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.182",
"@types/moment": "^2.13.0",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"eslint-plugin-solid": "^0.11.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"install": "^0.13.0",
"jest": "^27.0.6",
"lint-staged": "^13.1.2",
"moment": "^2.29.4",
"obsidian": "^0.12.0",
"prettier": "^2.5.1",
"rollup": "^2.79.1",
"solid-jest": "^0.2.0",
"stylelint": "^15.6.1",
"stylelint-config-clean-order": "^5.0.1",
"stylelint-config-standard": "^33.0.0",
"ts-jest": "^27.0.5",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"babel-preset-solid": "^1.6.10",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"obsidian-daily-notes-interface": "^0.9.4",
"solid-js": "^1.6.11"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.css": "stylelint --fix",
"*.ts,*.tsx,*.js,*.jsx": "eslint"
}
}