-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·91 lines (91 loc) · 3.04 KB
/
package.json
File metadata and controls
executable file
·91 lines (91 loc) · 3.04 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
{
"name": "@fedeghe/react-vtable",
"version": "0.0.10",
"description": "react table virtualized",
"main": "dist/index.js",
"scripts": {
"start": "webpack serve --open --config webpack.config.js",
"build": "webpack --config webpack.prod.js",
"test": "jest -u",
"testwatch": "jest -u --watchAll",
"cover": "jest --coverage --collectCoverageFrom='source/**/*.js'",
"lint": "eslint ./source/VTable/*.*",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fedeghe/react-vtable.git"
},
"keywords": [
"react table",
"react virtual table"
],
"author": "fedeghe@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/fedeghe/react-vtable/issues"
},
"homepage": "https://github.com/fedeghe/react-vtable#readme",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^12.5.0",
"babel-cli": "^6.26.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.5",
"babel-preset-env": "^1.7.0",
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.8.3",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.2",
"eslint": "^8.16.0",
"eslint-config-esnext": "^4.1.0",
"eslint-config-recommended": "^4.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.0",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^28.1.0",
"jss-preset-default": "^10.5.1",
"less": "^4.1.1",
"less-loader": "^8.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-jss": "^10.9.0",
"react-testing-library": "^8.0.1",
"regenerator-runtime": "^0.13.7",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.3.3",
"web-page-monitor": "^0.0.16",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"files": [
"./dist/*.js"
],
"dependencies": {}
}