-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.93 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.93 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
{
"name": "react-adjustable-grid",
"version": "0.1.0",
"description": "A drag-resizable grid for React",
"main": "dist/react-adjustable-grid.js",
"types": "types/",
"style": "css/styles.css",
"scripts": {
"build": "webpack && tsc --emitDeclarationOnly --outDir types",
"lint": "eslint --ext ts,tsx src/**/*",
"dev": "webpack serve --config webpack.dev.js --hot --progress",
"dev:local": "webpack watch --config webpack.local.js",
"test": "echo TODO && exit 69"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plungingChode/react-adjustable-grid.git"
},
"keywords": [
"react",
"grid",
"resizable",
"typescript"
],
"author": "Szigeti Péter",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/plungingChode/react-adjustable-grid/issues"
},
"homepage": "https://github.com/plungingChode/react-adjustable-grid#readme",
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.5"
},
"dependencies": {
"clsx": "^1.1.1",
"fast-deep-equal": "^3.1.3"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@testing-library/react": "^12.1.2",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-jest": "^27.4.6",
"babel-loader": "^8.2.3",
"eslint": "^8.7.0",
"eslint-plugin-react": "^7.28.0",
"html-webpack-plugin": "^5.5.0",
"react-refresh": "^0.11.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
}
}