-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.38 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
76
77
{
"name": "obsidian-smart-gantt",
"version": "0.1.17",
"description": "Intelligently generate Gantt chart from your tasks",
"main": "main.js",
"scripts": {
"css": "tailwindcss -i src/style/src.css -o styles.css --watch",
"esbuild": "node esbuild.config.mjs",
"dev": "concurrently \"yarn run css\" \"yarn run esbuild\" ",
"build": "tailwindcss -i src/style/src.css -o styles.css --minify && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"gen:sample-vault": "zx script/gen-sample-md.mjs --vault ~/obsidian-smart-gantt-sample/sample --fileN 100 --elN 10"
},
"keywords": [
"gantt",
"task",
"obsidian"
],
"author": "https://github.com/nhannht",
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/crypto-js": "^4.2.2",
"@types/lodash": "^4.17.0",
"@types/mdast": "^4.0.4",
"@types/node": "^16.11.6",
"@types/react": "^18.2.75",
"@types/react-dom": "^18.2.24",
"@types/unist": "^3.0.2",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"concurrently": "^8.2.2",
"esbuild": "0.17.3",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4",
"zx": "^8.1.4"
},
"dependencies": {
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.29.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"autoprefixer": "^10.4.19",
"chrono-node": "^2.7.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"gantt-task-react": "^0.3.9",
"lodash": "^4.17.21",
"lucide-react": "^0.414.0",
"marked": "^13.0.2",
"mdast-util-from-markdown": "^2.0.1",
"micromark": "^4.0.0",
"postcss": "^8.4.38",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-resizable-panels": "^2.0.22",
"react-use": "^17.5.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"tailgrids": "^2.1.0",
"tailwind-merge": "^2.4.0",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7"
}
}