forked from carlonicora/obsidian-rpg-manager
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.81 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.81 KB
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
76
77
78
79
80
81
82
{
"name": "rpg-manager",
"version": "4.2.1",
"description": "Manage your Tabletop Role Playing Game Campaigns in Obsidian.",
"main": "src/main.ts",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "npx tailwindcss -i ./styles.tailwind.css -o ./styles.css && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest"
},
"keywords": [],
"author": "Carlo Nicora",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"semantic-release": "^24.0.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.11",
"@codemirror/lang-markdown": "^6.2.1",
"@codemirror/language": "https://github.com/lishid/cm-language",
"@codemirror/state": "github:codemirror/state",
"@codemirror/stream-parser": "github:codemirror/stream-parser",
"@codemirror/view": "github:codemirror/view",
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.196",
"@types/luxon": "^3.0.1",
"@types/node": "^16.11.6",
"@types/react": "^18.2.18",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "^18.2.7",
"@types/react-flatpickr": "^3.8.8",
"@types/react-simple-maps": "^3.0.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"babel-jest": "^29.5.0",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"eslint-plugin-deprecation": "^1.5.0",
"install": "^0.13.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-environment-node": "^29.5.0",
"madge": "^5.0.1",
"npm": "^9.8.1",
"obsidian": "latest",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.0.5",
"tslib": "2.4.0",
"typescript": "^4.9"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@testing-library/react": "^14.0.0",
"axios": "^1.4.0",
"i18next": "^23.4.1",
"i18next-browser-languagedetector": "^7.1.0",
"lodash": "^4.17.21",
"luxon": "^3.0.4",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-flatpickr": "^3.10.13",
"react-i18next": "^13.0.3",
"react-markdown": "^8.0.7",
"react-simple-maps": "^3.0.0",
"rehype-raw": "^6.1.1",
"uuid": "^9.0.0"
}
}