-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.26 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
{
"name": "react-align",
"version": "2.2.2",
"author": "KaWaite",
"license": "MIT",
"main": "./dist/react-align.umd.js",
"module": "./dist/react-align.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/react-align.mjs",
"require": "./dist/react-align.umd.js"
}
},
"scripts": {
"build": "tsc && vite build",
"type": "tsc",
"test": "vitest",
"lint": "eslint ."
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"peerDependencies": {
"react": ">=16",
"react-beautiful-dnd": "*"
},
"prettier": {
"printWidth": 80,
"semi": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/react": "^18.0.24",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^18.0.8",
"@vitejs/plugin-react": "^2.2.0",
"eslint": "^8.26.0",
"eslint-config-reearth": "^0.2.1",
"husky": "^8.0.1",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"typescript": "^4.8.4",
"vite": "^3.2.1",
"vite-plugin-css-injected-by-js": "^2.1.1",
"vite-plugin-dts": "^1.6.6",
"vite-plugin-svgr": "^2.2.2",
"vitest": "^0.24.3"
}
}