-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "fluent-reducer",
"version": "2.0.1",
"description": "TypeSafe & Immutable useReducer",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "webpack -w",
"build": "webpack -p",
"test": "jest",
"test:watch": "jest --watch --no-cache",
"storybook": "start-storybook -p 6006 --no-dll",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"prepublishOnly": "npm run build && cp -r ./dist/* . && rm -rf ./dist",
"postpublish": "git clean -fd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sable-virt/fluent-reducer.git"
},
"keywords": [
"react",
"reducer"
],
"author": "sable.virt",
"license": "MIT",
"bugs": {
"url": "https://github.com/sable-virt/fluent-reducer/issues"
},
"homepage": "https://github.com/sable-virt/fluent-reducer#readme",
"peerDependencies": {
"immer": "^6.0.9",
"react": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-notes": "^5.3.19",
"@storybook/addon-storysource": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"@storybook/storybook-deployer": "^2.8.6",
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.0.6",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"immer": "^6.0.9",
"jest": "^26.0.1",
"loglevel": "^1.6.8",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"ts-jest": "^26.1.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {}
}