-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.1 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.1 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "mydraft.cc",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "vite --host",
"start-local": "vite --mode local-server",
"lint": "eslint src/**/*.ts[x]",
"lint:fix": "eslint src/**/*.ts[x] --fix",
"build": "tsc && vite build",
"build-storybook": "storybook build",
"test": "echo n | vitest --browser",
"test:ci": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"chromatic": "npx chromatic --project-token=41cda26e5757"
},
"dependencies": {
"@ant-design/icons": "^5.6.1",
"@marker.io/browser": "^0.19.0",
"@reduxjs/toolkit": "^2.6.1",
"@storybook/addon-docs": "^9.0.15",
"@svgdotjs/svg.js": "^3.2.4",
"@vitest/utils": "^3.2.4",
"antd": "^5.24.5",
"classnames": "^2.3.2",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"date-fns": "^2.30.0",
"deep-object-diff": "^1.1.9",
"esbuild": "^0.25.5",
"file-saver": "^2.0.5",
"history": "4.7.2",
"marked": "^10.0.0",
"mousetrap": "1.6.5",
"pixi.js": "^8.11.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-color": "2.19.3",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-dom": "^18.2.0",
"react-redux": "^9.2.0",
"react-router": "^6.30.0",
"react-router-dom": "^6.30.0",
"react-to-print": "^2.14.15",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"reselect": "4.1.8",
"sharp": "^0.33.5",
"tslib": "2.8.1"
},
"devDependencies": {
"@peterek/vite-plugin-favicons": "^2.1.0",
"@storybook/addon-links": "^9.0.15",
"@storybook/react-vite": "^9.0.15",
"@stylistic/eslint-plugin": "^3.1.0",
"@types/d3-zoom": "^3.0.8",
"@types/file-saver": "^2.0.7",
"@types/history": "^5.0.0",
"@types/lodash": "4.17.20",
"@types/marked": "^6.0.0",
"@types/mousetrap": "1.6.15",
"@types/node": "24.0.10",
"@types/react": "^18.3.12",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-color": "3.0.13",
"@types/react-dom": "^18.3.5",
"@types/react-measure": "2.0.12",
"@types/react-redux": "7.1.34",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@types/react-router-redux": "5.0.27",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-istanbul": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"chromatic": "^9.1.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-storybook": "^9.0.15",
"jsdom": "^26.0.0",
"playwright": "^1.53.2",
"sass": "^1.69.5",
"storybook": "^9.0.15",
"typescript": "^5.8.3",
"vite": "^7.0.2",
"vite-plugin-pwa": "^1.0.1",
"vitest": "^3.2.4",
"vitest-browser-react": "^1.0.0",
"webdriverio": "^9.16.2"
}
}