-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.58 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.58 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "react-vt-table",
"version": "0.8.4",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"repository": {
"type": "git",
"url": "https://github.com/avin/react-vt-table"
},
"keywords": [
"react",
"table",
"reactjs",
"react-component",
"virtual",
"virtualized",
"header"
],
"lint-staged": {
"linters": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"build:demo": "npm run clean:demo && build-storybook -o demo",
"build:dist": "npm run clean:dist && rollup -c",
"clean:demo": "rimraf demo",
"clean:dist": "rimraf dist",
"deploy": "gh-pages -d demo -r https://github.com/avin/react-vt-table",
"postpublish": "npm run deploy",
"precommit": "lint-staged",
"prepare": "npm run build:dist",
"predeploy": "npm run build:demo",
"prettier": "prettier --write '{src}/**/*.js'",
"storybook": "start-storybook -p 9009",
"start": "rollup -c -w",
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"classnames": "^2.2.6",
"memoize-one": "^5.0.0",
"react-draggable": "^3.1.1",
"react-window": "^1.5.1"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@avinlab/react-size-me": "^1.1.5",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-solid-svg-icons": "^5.7.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@storybook/addon-actions": "^4.1.11",
"@storybook/addon-links": "^4.1.11",
"@storybook/addons": "^4.1.11",
"@storybook/react": "^4.1.11",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.5",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-flow-react-proptypes": "^25.0.0",
"cpr": "^3.0.1",
"cross-env": "^5.1.4",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint-config-prettier": "^4.0.0",
"flow-bin": "^0.93.0",
"gh-pages": "^2.0.1",
"husky": "^1.1.3",
"immutable": "^4.0.0-rc.12",
"jest-environment-enzyme": "^7.0.1",
"jest-enzyme": "^7.0.1",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-json-tree": "^0.11.2",
"react-scripts": "^2.1.5",
"react-test-renderer": "^16.8.1",
"rimraf": "^2.6.3",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-size-snapshot": "^0.8.0",
"sass-loader": "^7.1.0",
"sinon": "^7.2.3"
}
}