-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.88 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.88 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
{
"name": "client-core",
"version": "1.0.0-dev.14",
"main": "lib/index.js",
"repository": "https://gitlab.stacks.cz/brabeji/client-core.git",
"author": "Jiri Brabec <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf lib/",
"build": "npm run clean && node ./node_modules/babel-cli/bin/babel src/ --out-dir lib --copy-files",
"build:watch": "npm run clean && node ./node_modules/babel-cli/bin/babel src/ --out-dir lib --watch --copy-files"
},
"dependencies": {
"axios": "^0.16.0",
"date-fns": "^1.28.2",
"dot-object": "^1.7.0",
"fast-memoize": "^2.2.7",
"invariant": "^2.2.2",
"jsonschema": "^1.2.2",
"lodash": "^4.17.4",
"normalizr": "https://github.com/brabeji/normalizr.git#ee110c6391bcf6c3f0245b932abdc28ec3003c4e",
"object-hash": "^1.2.0",
"prop-types": "^15.6.0",
"react-custom-scrollbars": "^4.1.2",
"redux-batched-subscribe": "^0.1.6",
"tcomb-validation": "^3.3.0",
"urijs": "^1.18.10"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-module-resolver": "^2.7.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-tcomb": "^0.3.25",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^3.1.4",
"rimraf": "^2.6.1"
},
"peerDependencies": {
"classnames": "^2.2.5",
"immutable": "^3.8.2",
"react": "^15.6.0",
"react-dom": "^15.6.0",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "5.0.0-alpha.6",
"redux-saga": "^0.15.3",
"reselect": "^3.0.1",
"seamless-immutable": "^7.1.2",
"tcomb": "^3.2.20"
}
}