This repository was archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.41 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.41 KB
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
{
"name": "redux-modal",
"version": "1.3.3",
"description": "react-modal connected with redux",
"main": "lib/index.js",
"repository": "github:HealthByRo/redux-modal",
"author": "Roman Health",
"license": "MIT",
"scripts": {
"build": "rm -rf lib && babel --plugins transform-decorators-legacy -d lib/ src/ --ignore \"**/*.test.js\",\"**/*.stories.js\"",
"test": "jest --coverage --config=.jest.json",
"test:watch": "jest --watchAll --config=.jest.json",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "npm run lint:js",
"lint:eslint": "eslint src/**",
"lint:js": "npm run lint:eslint -- src/ ",
"lint:staged": "lint-staged",
"prerelease": "git checkout master && git pull && git checkout develop && git pull",
"release": "npm version",
"postrelease": "git push && git push --tags && git checkout master && git merge develop && git push && git checkout develop",
"watch": "npm-watch"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "js",
"quiet": true,
"legacyWatch": true,
"delay": 2500
}
},
"lint-staged": {
"*.js": "lint:eslint"
},
"pre-commit": "lint:staged",
"dependencies": {
"immutable": "^3.8.2",
"react-modal": "^3.3.2",
"redux-immutable": "^4.0.0",
"reselect": "^3.0.1"
},
"peerDependencies": {
"react": "16.x",
"react-redux": "5.x"
},
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-jest": "^19.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "^0.45.0",
"jest": "^20.0.4",
"lint-staged": "^3.4.0",
"npm-watch": "^0.2.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-test-renderer": "^15.5.4"
},
"homepage": "https://github.com/HealthByRo/redux-modal/"
}