-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.97 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.97 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
{
"name": "use-agent-reducer",
"version": "4.7.0",
"main": "dist/index.js",
"typings": "index.d.ts",
"author": "Jimmy.Harding",
"description": "the purpose of this project is make useReducer classify",
"scripts": {
"clear": "rm -rf ./dist & rm -rf ./es",
"lint": "eslint src --fix --ext .ts,.tsx ",
"lint-init": "eslint --init",
"es-build": "babel src --extensions '.ts' --config-file ./babel.es.config.js --out-dir es",
"base-build": "webpack --config ./webpack.config.js --env.mode=production",
"build": "mkdir ./es & npm run es-build & mkdir ./dist & cp ./npm/index.js ./dist/index.js & npm run base-build",
"test": "jest --coverage",
"docs": "docsify serve ./docs",
"analyze": "webpack --config ./webpack.config.js --env.mode=production --env.analyze"
},
"repository": {
"type": "git",
"url": "https://github.com/filefoxper/use-agent-reducer"
},
"homepage": "https://filefoxper.github.io/use-agent-reducer/#/",
"files": [
"dist",
"es",
"esm",
"index.d.ts"
],
"keywords": [
"react",
"hook",
"useReducer",
"class",
"state",
"agent",
"typescript",
"browser"
],
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"agent-reducer": ">=4.5.4"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-decorators": "7.13.5",
"@babel/plugin-transform-runtime": "7.13.10",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/preset-env": "7.13.12",
"@babel/preset-react": "7.13.13",
"@babel/preset-typescript": "7.13.0",
"@babel/runtime": "7.14.0",
"@testing-library/dom": "^7.26.3",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@testing-library/react-hooks": "^3.4.2",
"@types/jest": "^23.3.12",
"@types/react": "16.8.25",
"@types/react-dom": "^16.8.5",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "4.21.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.6",
"core-js": "^3.8.0",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^0.14.3",
"jest": "^26.0.1",
"lint-staged": "^7.2.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-test-renderer": "^16.7.0",
"agent-reducer": "4.5.4",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.12.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.8.3",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "4.35.3",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "3.3.5",
"esbuild": "^0.14.27"
}
}