-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.45 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
{
"name": "swagger-adjust",
"description": "Pluggable framework for creating extendable React+Redux applications",
"keywords": [
"swagger",
"plugins",
"customization",
"enhancing",
"react",
"redux",
"react-redux-applications"
],
"license": "Apache-2.0",
"version": "0.7.1",
"main": "cjs/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"unpkg": "dist/swagger-adjust.min.js",
"repository": "[email protected]:char0n/swagger-adjust.git",
"homepage": "https://github.com/char0n/swagger-adjust",
"scripts": {
"prepublishOnly": "npm run clean && npm run build",
"build": "npm run build:cjs && npm run build:es & npm run build:umd:browser",
"build:umd:browser": "cross-env BABEL_ENV=browser webpack --progress --config config/webpack/webpack.config.js",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir cjs",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"lint": "cross-env BABEL_ENV=es eslint ./",
"lint:fix": "cross-env BABEL_ENV=es eslint ./ --fix",
"clean": "rimraf cjs es dist"
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"ramda": "^0.30.0",
"ramda-adjunct": "^5.0.0",
"serialize-error": "^12.0.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^17.0.0",
"react-dom": "^18.0.0 || ^17.0.0",
"react-redux": "^9.0.0 || ^8.0.0 || ^7.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"react-dom": {
"optional": false
},
"react-redux": {
"optional": false
}
},
"devDependencies": {
"@babel/cli": "=7.26.4",
"@babel/core": "^7.13.1",
"@babel/eslint-parser": "^7.13.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "=7.20.7",
"@babel/preset-env": "^7.13.0",
"@babel/register": "=7.25.9",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"babel-loader": "=9.2.1",
"cross-env": "=7.0.3",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "=9.1.0",
"eslint-plugin-import": "=2.31.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "=8.0.3",
"lint-staged": "=15.4.2",
"prettier": "^3.0.1",
"rimraf": "=5.0.8",
"terser-webpack-plugin": "^5.0.3",
"webpack": "=5.97.1",
"webpack-bundle-size-analyzer": "=3.1.0",
"webpack-cli": "=5.1.4",
"webpack-stats-plugin": "=1.1.3"
}
}