-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 3.03 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
89
90
91
92
{
"name": "react-filter-utils",
"version": "0.0.14",
"description": "filter utils for react",
"keywords": [
"react",
"filter"
],
"sideEffects": false,
"main": "esm/index.js",
"module": "esm/index.js",
"typings": "types/index.d.ts",
"engines": {
"node": "> 6.9.1"
},
"files": [
"esm",
"es",
"src",
"types"
],
"scripts": {
"build": "npm run build:types && npm run build:js && npm run build:es",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "cross-env BUILD_ENV=js babel src -d esm --extensions \".ts,.tsx\" --source-maps",
"build:es": "cross-env BUILD_ENV=es babel src -d es --extensions \".ts,.tsx\"",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/gxlmyacc/react-filter-utils"
},
"author": "gxlmyacc",
"dependencies": {
"@types/react": "^16.8.0",
"core-js": "^2",
"tslib": "^2.0.3"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
"@babel/plugin-proposal-json-strings": "^7.12.1",
"@babel/plugin-proposal-numeric-separator": "^7.12.7",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-arrow-functions": "^7.12.1",
"@babel/plugin-transform-destructuring": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-parameters": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/plugin-transform-spread": "^7.12.1",
"@babel/plugin-transform-strict-mode": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.2.2",
"babel-plugin-define-variables": "^0.0.3",
"clean-webpack-plugin": "^1.0.1",
"cross-env": "^5.2.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-react-app": "^5.0.1",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.0",
"file-loader": "^4.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"jsx-loader": "^0.13.2",
"progress-bar-webpack-plugin": "^1.12.1",
"typescript": "^4.8.4",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.35.3",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
}
}