-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 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
{
"name": "redux-patterns",
"version": "0.1.26",
"description": "A redux based patterns",
"repository": "github:sharingapples/redux-patterns",
"main": "dist/index.js",
"react-native": "src/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"test": "jest",
"clean": "rimraf dist",
"flow": "flow-copy-source src dist",
"lint": "eslint src",
"build": "babel src -d dist",
"prepare": "npm run lint && npm run clean && npm run build && npm run flow"
},
"author": "Ranjan Shrestha",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.4.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-import-export": "^1.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"flow-copy-source": "^2.0.1",
"jest": "^23.4.1",
"react": "^16.4.1",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"react": "^16.4.1"
},
"dependencies": {
"prop-types": "^15.6.2"
}
}