This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
74 lines (74 loc) · 2.47 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
{
"name": "fantasy-calendar",
"version": "3.1.0",
"description": "Create fantasy calendars in Obsidian!",
"main": "main.js",
"scripts": {
"webpack:build": "webpack",
"webpack:dev": "set NODE_OPTIONS=--openssl-legacy-provider && webpack --config webpack.dev.js -w --stats-children",
"build": "node ./esbuild.config.mjs production",
"dev": "node ./esbuild.config.mjs",
"test": "jest",
"deploy": "python -m mkdocs gh-deploy",
"release": "standard-version -a"
},
"standard-version": {
"t": "",
"releaseCommitMessageFormat": "Fantasy Calendar Release: v{{currentTag}}",
"scripts": {
"postchangelog": "npx cpy-cli CHANGELOG.md docs/docs && git add ."
}
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@docusaurus/types": "^2.0.0-beta.15",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/svelte": "^3.0.3",
"@tsconfig/svelte": "^2.0.1",
"@types/he": "^1.1.2",
"@types/jest": "^27.0.2",
"@types/node": "^14.17.21",
"@types/randomcolor": "^0.5.6",
"@types/xmldom": "^0.1.31",
"babel-jest": "^27.2.5",
"babel-loader": "^8.2.2",
"builtin-modules": "^3.2.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^5.2.7",
"distinct-colors": "^3.0.0",
"dotenv": "^14.2.0",
"esbuild": "^0.13.15",
"esbuild-plugin-inline-worker": "github:mitschabaude/esbuild-plugin-inline-worker",
"esbuild-svelte": "^0.6.1",
"fast-copy": "^2.1.1",
"he": "^1.2.0",
"jest": "^27.2.5",
"mini-css-extract-plugin": "^2.3.0",
"moment": "^2.29.4",
"obsidian": "^0.13.21",
"standard-version": "^9.3.2",
"svelte": "^3.49.0",
"svelte-dnd-action": "^0.9.11",
"svelte-jester": "^2.1.5",
"svelte-loader": "^3.1.2",
"svelte-preprocess": "^4.10.2",
"title-case": "^3.0.3",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.3",
"tslib": "^2.3.0",
"typescript": "^4.2.4",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0",
"worker-loader": "^3.0.8",
"xmldom": "^0.6.0"
},
"dependencies": {
"@popperjs/core": "^2.10.2",
"randomcolor": "^0.6.2"
}
}