-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
88 lines (88 loc) · 2.85 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
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
{
"name": "react-infinite-table",
"version": "1.3.0",
"description": "React table with infinite rows and much more!",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nicoladefranceschi/react-infinite-table"
},
"keywords": [
"react",
"reactjs",
"react-component",
"virtual",
"scrolling",
"infinite",
"virtualized",
"table",
"fixed",
"header",
"footer",
"grid"
],
"author": "Nicola De Franceschi",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicoladefranceschi/react-infinite-table/issues"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --host 0.0.0.0 --hot --config webpack.config.js",
"build": "npm run build:commonjs && npm run build:css && npm run build:es && npm run build:demo",
"build:commonjs": "npm run clean:commonjs && cross-env NODE_ENV=commonjs babel src --out-dir dist/commonjs",
"build:css": "npm run clean:css && node-sass src/style.scss dist/style.css",
"build:demo": "npm run clean:demo && cross-env NODE_ENV=production webpack --config webpack.config.js -p --bail",
"build:es": "npm run clean:es && cross-env NODE_ENV=es babel src --out-dir dist/es",
"clean": "npm run clean:commonjs && npm run clean:css && npm run clean:demo && npm run clean:es",
"clean:commonjs": "rimraf dist/commonjs",
"clean:css": "rimraf dist/style.css",
"clean:demo": "rimraf build",
"clean:es": "rimraf dist/es",
"prepublish": "npm run build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"bootstrap": "^4.4.1",
"cross-env": "^7.0.2",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.2.0",
"node-sass": "^4.13.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"classnames": "^2.2.6",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}