-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.11 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "xoidrag-root",
"private": "true",
"version": "1.0.0",
"description": "Customizable and modular drag and drop library",
"homepage": "https://github.com/xoidlabs/xoidrag#readme",
"bugs": {
"url": "https://github.com/xoidlabs/xoidrag/issues"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"license": "ISC",
"author": "onurkerimov",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/xoidlabs/xoidrag.git"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build:site": "vite build",
"build:packages": "rollup --config",
"preview": "vite preview",
"lint": "pnpm lint:eslint && pnpm lint:style",
"lint:fix": "pnpm lint:eslint-fix && pnpm lint:style-fix",
"lint:eslint": "eslint . --ext .js,.ts,.tsx",
"lint:eslint-fix": "eslint . --fix --ext .js,.ts,.tsx",
"lint:style": "stylelint 'src/**/*.css'",
"lint:style-fix": "stylelint --fix 'src/**/*.css'",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:virtual-update": "vitest run --update",
"typecheck": "tsc --project tsconfig.json --pretty --noEmit --incremental false"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"@motif-ui/react-use-fork-ref": "^0.0.1",
"@types/scrollparent": "^2.0.1",
"@xoid/feature": "^0.0.6",
"@xoid/react": "^1.0.0-beta.10",
"itches": "^0.0.5",
"random-words": "^2.0.0",
"react": "^18.2.0",
"react-dom": "18.2.0",
"scrollparent": "^2.1.0",
"xoid": "^1.0.0-beta.10"
},
"devDependencies": {
"@babel/helper-module-imports": "^7.22.15",
"@storybook/addon-a11y": "7.4.5",
"@storybook/addon-essentials": "7.4.5",
"@storybook/react": "7.4.5",
"@storybook/react-vite": "7.4.5",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/node": "^20.8.0",
"@types/react": "18.2.24",
"@types/react-dom": "18.2.8",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"@vitejs/plugin-react-swc": "3.3.2",
"babel-plugin-macros": "^3.1.0",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.14",
"eslint-plugin-unused-imports": "3.0.0",
"jsdom": "22.1.0",
"prettier": "3.0.3",
"rollup": "^2.30.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"storybook": "7.4.5",
"stylelint": "15.10.3",
"stylelint-config-recess-order": "4.3.0",
"stylelint-config-standard": "34.0.0",
"typescript": "5.2.2",
"vite": "4.4.9",
"vite-plugin-babel-macros": "^1.0.6",
"vite-plugin-pages": "^0.31.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "0.34.6",
"workspaces-run": "^1.0.1"
}
}