-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.13 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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "agent-reducer",
"version": "14.7.2",
"main": "dist/agent-reducer.mini.js",
"typings": "index.d.ts",
"author": "Jimmy.Harding",
"description": "the purpose of this project is using a class to replace a reducer",
"scripts": {
"clear": "rm -rf ./dist & rm -rf ./libs & rm -rf ./es & rm -rf ./esm",
"es-build": "esbuild ./src/index.ts --outfile=./es/index.js --bundle --target=es2020 --format=esm",
"base-build": "webpack --config ./webpack.config.js --env=mode=production",
"build": "npm run es-build & npm run base-build",
"test": "jest --coverage",
"lint": "eslint src --fix --ext .ts ",
"lint-d": "eslint . --fix --ext .d.ts ",
"lint-init": "eslint --init",
"docs": "docsify serve ./docs",
"analyze": "webpack --config ./webpack.config.js --env=mode=production --env=analyze"
},
"repository": {
"type": "git",
"url": "https://github.com/filefoxper/agent-reducer"
},
"homepage": "https://filefoxper.github.io/agent-reducer/#/",
"files": [
"dist",
"es",
"esm",
"index.js",
"index.d.ts"
],
"keywords": [
"typescript",
"reducer",
"class",
"state",
"agent",
"proxy",
"middleWare",
"object",
"typescript",
"browser",
"js"
],
"license": "MIT",
"peerDependencies": {
"@babel/runtime": ">=7.3.0",
"core-js": ">=3.8.0"
},
"devDependencies": {
"@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/preset-env": "7.13.12",
"@babel/preset-typescript": "7.13.0",
"@babel/runtime": "7.14.0",
"@types/jest": "^26.0.0",
"@types/rewire": "2.5.28",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "4.21.0",
"babel-jest": "26.0.1",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.12.0",
"babel-plugin-rewire-ts": "1.3.3",
"babel-plugin-transform-react-remove-prop-types": "0.4.21",
"core-js": "3.12.1",
"esbuild": "^0.14.27",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"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",
"file-loader": "5.1.0",
"generator-dc": "2.0.0",
"html-webpack-plugin": "5.3.1",
"husky": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
"immer": "^9.0.12",
"jest": "26.6.3",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^1.6.0",
"pre-commit": "^1.2.2",
"prettier": "2.3.2",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.1",
"react-test-renderer": "^16.14.0",
"redux": "^4.1.2",
"regenerator-runtime": "0.13.5",
"rewire": "5.0.0",
"style-loader": "1.3.0",
"tsconfig-paths-webpack-plugin": "3.5.1",
"typescript": "4.2.2",
"url-loader": "4.1.1",
"webpack": "5.31.2",
"webpack-bundle-analyzer": "4.4.2",
"webpack-cli": "4.9.0",
"webpack-dev-server": "3.11.2"
}
}