-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.05 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
{
"name": "duckness",
"version": "1.0.0",
"description": "Duckness - Modular Redux Ducks monorepo",
"main": "index.js",
"repository": "[email protected]:hitosu/duckness.git",
"author": "Vasily Kazantsev <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"test": "yarn lint && jest",
"test:watch": "yarn lint && jest --watch",
"build": "yarn lerna run build",
"rebuild": "yarn lerna run rebuild",
"clean": "yarn lerna run clean",
"publish": "yarn lerna publish --no-private",
"lint": "yarn lerna run lint && eslint 'stories/**/*.{js,jsx}'",
"storybook": "yarn build && start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/addons": "^6.5.15",
"@storybook/cli": "^6.5.15",
"@storybook/react": "^6.5.15",
"@types/react-dom": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.2",
"babel-preset-minify": "^0.5.2",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lerna": "^6.4.0",
"prettier": "^2.8.2",
"prop-types": "^15.8.1",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"dependencies": {
"react": "^17.0.2",
"react-redux": "^8.0.5",
"redux": "^4.2.0",
"redux-observable": "^1.2.0",
"redux-saga": "^1.2.2",
"rxjs": "^6.6.7"
},
"resolutions": {
"trim": ">= 1",
"trim-newlines": ">= 4.0.1",
"glob-parent": ">= 5.1.2",
"got": ">=11.8.5",
"**/@types/react": "^17.0.2"
}
}