forked from takeonfaith/LK
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 3.02 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
78
79
80
81
82
83
{
"name": "lk",
"version": "4.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"start": "vite",
"build": "vite build",
"build-test": "vite build --mode development",
"preview": "vite preview",
"reinstall": "rm -rf node_modules && rm -rf package-lock.json && npm cache clean -f && npm i",
"reinstall-win": "npm rm -rf node_modules && npm rm -rf package-lock.json && npm cache clean -f && npm i",
"knip": "knip",
"start:external": "npm run start -- --host",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@farfetched/core": "^0.12.4",
"@rollup/plugin-babel": "6.0.4",
"@tiptap/extension-list-item": "^2.4.0",
"@tiptap/extension-ordered-list": "^2.4.0",
"@tiptap/extension-placeholder": "^2.4.0",
"@tiptap/extension-text-align": "^2.4.0",
"@tiptap/react": "^2.4.0",
"@tiptap/starter-kit": "^2.4.0",
"@withease/web-api": "^1.2.3",
"axios": "^1.5.1",
"date-fns": "^2.30.0",
"effector": "^23.2.2",
"effector-react": "^23.2.1",
"patronum": "^2.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^5.2.1",
"react-indiana-drag-scroll": "^2.2.0",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"react-simple-wysiwyg": "^3.0.2",
"react-virtualized": "^9.22.5",
"sanitize-html": "^2.13.0",
"styled-components": "^5.3.3",
"zod": "^3.23.5"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/node": "^20.11.17",
"@types/react": "^17.0.71",
"@types/react-dom": "^17.0.11",
"@types/react-router": "^5.1.17",
"@types/react-router-dom": "^5.3.2",
"@types/react-virtualized": "^9.22.0",
"@types/sanitize-html": "^2.11.0",
"@types/styled-components": "^5.1.19",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vitejs/plugin-legacy": "^4.0.3",
"@vitejs/plugin-react": "^4.3.0",
"core-js": "^3.39.0",
"dependency-cruiser": "^16.2.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-boundaries": "^5.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.18",
"knip": "^3.0.2",
"prettier": "^3.4.2",
"tiny-invariant": "^1.3.1",
"typescript": "^5.7.3",
"vite": "^4.3.6",
"vite-plugin-checker": "^0.6.0",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.1"
}
}