-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.73 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": "@fuelrats/web-util",
"version": "0.3.3",
"description": "Utility package for the fuelrats.com website. Mainly contains redux tools",
"repository": {
"type": "git",
"url": "git+https://github.com/FuelRats/fuelrats.com-redux-utils.git"
},
"homepage": "https://github.com/FuelRats/fuelrats.com-redux-utils",
"author": {
"name": "Cameron Welter",
"email": "[email protected]",
"url": "https://github.com/UncleClapton"
},
"scripts": {
"lint": "yarn eslint .",
"build": "rm -rf dist && yarn rollup --config",
"release": "yarn build && yarn publish dist"
},
"bugs": {
"url": "https://github.com/FuelRats/fuelrats.com-redux-utils/issues"
},
"keywords": [
"fuelrats"
],
"license": "BSD-3-Clause",
"peerDependencies": {
"axios": ">=0.18",
"redux": "*",
"redux-thunk": "*"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.11.5",
"@babel/eslint-plugin": "^7.11.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-function-bind": "^7.11.5",
"@babel/plugin-proposal-function-sent": "^7.10.4",
"@babel/plugin-proposal-logical-assignment-operators": "^7.11.0",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-optional-catch-binding": "^7.10.4",
"@babel/plugin-proposal-private-methods": "^7.10.4",
"@babel/plugin-proposal-private-property-in-object": "^7.10.4",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/plugin-transform-strict-mode": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@fuelrats/eslint-config": "^2.2.0",
"@fuelrats/eslint-plugin": "^2.2.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"axios": "^0.21.0",
"axios-mock-adapter": "^1.18.2",
"babel-jest": "^26.5.2",
"builtin-modules": "^3.1.0",
"doctoc": "^1.4.0",
"eslint": "^7.11.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.5.2",
"jest": "^26.5.2",
"jest-extended": "^0.11.5",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"rollup": "^2.29.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-node-externals": "^2.2.0"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"@fuelrats/validation-util": "^1.2.0",
"flux-standard-action": "^2.1.1",
"immer": "^7.0.9",
"pure-uuid": "^1.6.1"
}
}