-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 4 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "src-react-table-monorepo",
"version": "7.0.5",
"description": "Hooks for building lightweight, fast and extendable datagrids for React",
"keywords": [
"react",
"table",
"react-table",
"datagrid"
],
"homepage": "https://react-table.js.org",
"repository": {
"type": "git",
"url": "https://github.com/tannerlinsley/react-table"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"license": "MIT",
"main": "index.js",
"files": [
"CHANGELOG.md",
"src/**/*.js",
"dist",
"README.md",
"scripts/"
],
"workspaces": [
"packages/*"
],
"scripts": {
"build": "webpack --config ./webpack/webpack.config.demo.js",
"build1": "cross-env NODE_ENV=production rollup -c",
"clean": "rimraf \"packages/**/dist\"",
"demo": "webpack serve --hot --config ./webpack/webpack.config.demo.js",
"dev": "",
"docs": "docz build && docz serve",
"docz:build": "docz build",
"docz:dev": "docz dev",
"docz:serve": "docz build && docz serve",
"formatter": "prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"formatter:check": "npm run formatter -- --check",
"help": "echo 'exec npm start to view the demo'",
"prepare": "",
"prettier": "prettier --config ./.prettierrc.js --loglevel log --write '**/*.{ts,tsx,js,jsx,json,css}'",
"release": "yarn publish",
"releaseNext": "yarn publish --tag next",
"start": "cd packages/react-table-v7 && npm run demo",
"start1": "rollup -c -w",
"test": "is-ci \"test:ci\" \"test:dev\"",
"test:ci": "yarn test:jest",
"test:coverage": "yarn test:jest; open coverage/lcov-report/index.html",
"test:dev": "jest --watch",
"test:jest": "jest --coverage"
},
"browserslist": [
"defaults",
"not ie 11",
"not ie_mob 11"
],
"dependencies": {
"@atao60/fse-cli": "^0.1.7",
"classnames": "^2.3.1",
"cross-fetch": "^3.1.4",
"debug": "^4.3.2",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/preset-env": "^7.13.1",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/faker": "^5.5.6",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"babel-jest": "^27.0.5",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.15.1",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"eslint": "^7.29.0",
"eslint-config-alloy": "^4.1.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-mdx": "^1.13.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^5.5.3",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"jest": "^27.0.5",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^2.4.2",
"node-polyfill-webpack-plugin": "^1.1.3",
"npm-force-resolutions": "^0.0.10",
"prettier": "^2.3.1",
"react-refresh": "^0.10.0",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"source-map-loader": "^3.0.0",
"style-loader": "^3.0.0",
"syncpack": "^5.7.11",
"terser-webpack-plugin": "^5.1.3",
"typescript": "^4.4.3",
"typesync": "^0.8.0",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0",
"yargs": "^17.0.1"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
}
}