forked from lundegaard/redux-tools
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.94 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
{
"name": "@redux-syringe/monorepo",
"private": true,
"license": "MIT",
"repository": "https://github.com/wafflepie/redux-syringe",
"contributors": [
"Vaclav Jancarik <[email protected]>",
"Tomas Konrady <[email protected]>",
"Martin Kadlec <[email protected]>",
"Sergey Dunaevskiy <[email protected]>",
"Veronika Wernerova <[email protected]>",
"Martin Machacek <[email protected]>"
],
"engines": {
"node": ">=14"
},
"workspaces": [
"packages/*",
"presets/*"
],
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/enzyme": "^3.10.12",
"@types/invariant": "^2.2.34",
"@types/jest": "^28.1.2",
"@types/ramda": "^0.28.14",
"@types/react": "^18.0.14",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"babel-core": "^7.0.0-bridge",
"babel-jest": "^28.1.1",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"invariant": "^2.2.4",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lerna": "^5.1.4",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"ramda": "^0.28.0",
"ramda-extension": "^0.11.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-observable": "^2.0.0-rc.1",
"rollup": "^2.75.7",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rxjs": "^7.5.5",
"serve": "^13.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"scripts": {
"build": "yarn clean && yarn build:rollup && yarn build:tsc",
"build:rollup": "lerna exec -- rollup -c=../../rollup.config.js",
"build:tsc": "lerna exec -- tsc --project tsconfig.build.json --emitDeclarationOnly",
"verify": "tsc --noEmit",
"clean": "lerna exec -- rimraf dist",
"docs": "serve docs",
"lernaPublish": "lerna publish",
"lint": "eslint --ext .js,.ts,.tsx --ignore-path .gitignore ./",
"prepare": "husky install",
"prepublish": "yarn build",
"prepublishOnly": "yarn",
"test": "jest"
}
}