-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
40 lines (40 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
40
{
"name": "obsidian-itinerary",
"version": "1.3.0",
"description": "Make planning your trip or event easier by rendering a calendar from event information found in your notes.",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment BUILD:production",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.23",
"@types/luxon": "^2.0.4",
"@types/node": "^14.14.37",
"jest": "^27.0.1",
"obsidian": "^0.12.0",
"prettier": "^2.3.0",
"rollup": "^2.32.1",
"rollup-plugin-css-only": "^3.1.0",
"ts-jest": "^27.0.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@fullcalendar/core": "^5.9.0",
"@fullcalendar/daygrid": "^5.9.0",
"@fullcalendar/list": "^5.9.0",
"@fullcalendar/luxon": "^5.9.0",
"@fullcalendar/timegrid": "^5.9.0",
"filtrex": "^2.2.3",
"luxon": "^1.28.0"
}
}