-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "react-konva-grid",
"description": "Canvas grid to render large set of tabular data with virtualization.",
"version": "1.0.3",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "tsc -b",
"check:types": "tsc --noEmit",
"storybook": "start-storybook -p 9002",
"prepublish": "yarn build",
"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": "^6.0.0",
"react-konva": "^16.13.0-3"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run check:types && npm run prettier"
}
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@storybook/addon-info": "^5.3.18",
"@storybook/react": "^5.3.18",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"babel-loader": "^8.1.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"react-docgen-typescript-loader": "^3.7.2",
"typescript": "^3.9.3"
}
}