-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.31 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
{
"name": "react-window-table",
"version": "1.0.31",
"main": "dist/react-window-table.cjs.js",
"module": "dist/react-window-table.es.js",
"browser": "dist/react-window-table.amd.js",
"jsnext:main": "dist/react-window-table.es.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bluewings/react-window-table"
},
"dependencies": {
"emotion": "^10.0.9",
"react-draggable": "^3.3.0",
"react-window-grid": "^1.0.28",
"tslib": "^1.10.0"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-window-grid": "^1.0.28"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx-source": "^7.2.0",
"@types/jest": "^24.0.11",
"@types/node": "^11.12.0",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"babel-loader": "^8.0.5",
"babel-plugin-transform-commonjs-es2015-modules": "^4.0.1",
"cra-rewired": "^1.0.22",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"faker": "^4.1.0",
"json-loader": "^0.5.7",
"node-sass": "^4.11.0",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-preset-env": "^6.5.0",
"prettier": "^1.16.4",
"pug-as-jsx-loader": "^1.0.66",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-scripts": "^2.1.8",
"rollup": "^1.2.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-pug-as-jsx": "^1.0.6",
"rollup-plugin-typescript2": "^0.20.1",
"rollup-plugin-uglify": "^6.0.2",
"tailwindcss": "^0.7.4",
"typescript": "^3.3.4000",
"yaml-loader": "^0.5.0"
},
"scripts": {
"start": "cra-rewired -s react-scripts -m start -c config/webpack.custom.dev.js",
"format": "prettier --write '{src/**/*.{js,jsx,ts,tsx,json,css,scss},documentation/**/*.{js,jsx,ts,tsx,json,css,scss}}'",
"build": "rollup -c",
"prebuild": "rm -rf dist/*",
"test": "react-scripts test",
"eject": "react-scripts eject",
"docz": "docz dev",
"docz:build": "docz build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"files": [
"dist",
"README.md"
],
"license": "MIT"
}