-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.86 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.86 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
66
67
{
"name": "react-variable-width-grid",
"version": "0.1.1",
"description": "Responsively align a grid of dynamically sized content",
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"test": "jest",
"prepublish": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmartinsky/variable-width-grid.git"
},
"keywords": [
"css",
"grid",
"react",
"dynamic"
],
"author": "Michael Martinsky",
"license": "MIT",
"sideEffects": "false",
"bugs": {
"url": "https://github.com/mmartinsky/variable-width-grid/issues"
},
"homepage": "https://github.com/mmartinsky/variable-width-grid#readme",
"dependencies": {
"@react-hook/size": "^2.1.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-essentials": "^6.1.18",
"@storybook/addon-links": "^6.1.18",
"@storybook/react": "^6.1.18",
"@storybook/storybook-deployer": "^2.8.7",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"babel-loader": "^8.2.1",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-resizable": "^1.11.0",
"rollup": "^2.39.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.0",
"source-map-loader": "^2.0.1",
"ts-loader": "^8.0.17",
"typescript": "^4.1.5"
}
}