-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.31 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
{
"name": "ello-brains",
"version": "1.0.9",
"description": "The brains of ello's react applications.",
"main": "index.js",
"repository": "https://github.com/ello/brains",
"license": "MIT",
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [
"lodash",
"transform-flow-strip-types"
]
},
"eslintConfig": {
"extends": "ello"
},
"files": [
"/actions/",
"/components/",
"/constants/",
"/helpers/",
"/interactions/",
"/lib/",
"/networking/",
"/reducers/",
"/sagas/",
"/selectors/",
"/types/"
],
"scripts": {
"build": "babel src --out-dir ./",
"build:watch": "babel src --out-dir ./ --watch",
"flow": "flow",
"link-apps": "yarn link && cd ../webapp && yarn link ello-brains && cd ../curator && yarn link ello-brains && echo 'run `yarn build:watch` to build the brains on save'",
"lint": "eslint src test",
"prepublish": "yarn build",
"pretest": "yarn lint",
"test": "NODE_ENV=test mocha test/unit --recursive",
"test:watch": "NODE_ENV=test mocha test/unit --recursive --watch",
"unlink-apps": "cd ../webapp && yarn unlink ello-brains && yarn --ignore-scripts && cd ../curator && yarn unlink ello-brains && yarn --ignore-scripts && cd ../brains && yarn unlink"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-eslint": "7.2.3",
"babel-plugin-lodash": "3.2.11",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"chai": "3.5.0",
"chai-generator": "2.1.0",
"chai-immutable": "1.6.0",
"eslint": "3.19.0",
"eslint-config-ello": "1.0.3",
"flow-bin": "0.45.0",
"jsdom": "9.12.0",
"mocha": "3.3.0",
"react": "15.5.4",
"react-addons-test-utils": "15.5.1",
"react-dom": "15.5.4",
"sinon": "2.1.0",
"sinon-chai": "2.10.0"
},
"peerDependencies": {
"react": "^15.5.4"
},
"dependencies": {
"humps": "2.0.0",
"immutable": "3.8.1",
"isomorphic-fetch": "2.2.1",
"jwt-decode": "2.2.0",
"lodash": "4.17.4",
"react-router-redux": "4.0.8",
"redux-persist": "4.7.1",
"redux-saga": "0.15.3",
"reselect": "3.0.0",
"trunc-html": "1.1.2"
}
}