forked from escapiststupor/konva-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "react-konva-grid",
"description": "Canvas grid to render large set of tabular data with virtualization.",
"version": "1.1.2",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "tsc -b",
"check:types": "tsc --noEmit",
"storybook": "start-storybook -p 9002",
"prettier": "prettier src/**/*.tsx --write"
},
"author": "Vinay M <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/rmdort/konva-grid.git"
},
"bugs": {
"url": "https://github.com/rmdort/konva-grid/issues"
},
"dependencies": {
"konva": "^8.3.14",
"react-konva": "^17.0.2-6"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run check:types && npm run prettier"
}
},
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@storybook/addon-info": "^4.1.18",
"@storybook/react": "^6.1.21",
"@types/react": "^17.0.52",
"@types/react-dom": "^17.0.18",
"babel-loader": "^8.2.3",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"react-docgen-typescript-loader": "^3.7.2",
"typescript": "^4.6.4"
}
}