-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.12 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.12 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
80
81
{
"name": "simpl-react",
"version": "0.8.0",
"description": "React components and utilities for the Simpl Framework",
"license": "GPL-2.0",
"main": "lib/index.js",
"directories": {
"src": "src/",
"lib": "lib/"
},
"scripts": {
"test": "jest",
"karma": "karma start",
"watch": "gulp watch",
"docs": "rm -rf docs && esdoc -c esdoc.json",
"compile": "rm -rf lib && babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "https://github.com/simplworld/simpl-react.git"
},
"dependencies": {
"autobahn": "^18.10.2",
"autobahn-react": "^0.3.1",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-redux": "^5.0.4",
"react-router-redux": "^4.0.6",
"redux": "^3.7.2",
"redux-actions": "^0.13.0",
"redux-create-reducer": "^1.1.1",
"redux-logger": "^2.7.0",
"redux-promise": "^0.5.1",
"redux-recycle": "^1.2.0",
"redux-thunk": "^2.2.0"
},
"peerDependencies": {
"react": "^15.5.x || ^16.x",
"react-dom": "^15.5.x || ^16.x",
"react-redux": "^5.0.0",
"redux": "^3.6.0",
"redux-create-reducer": "^1.1.1",
"redux-recycle": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-importpath-plugin": "0.0.1",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"glob": "^6.0.4",
"jasmine-core": "^2.4.1",
"jest": "^23.6.0",
"mocha": "^5.2.0",
"redux-devtools": "^3.0.1",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.1"
},
"jest": {
"roots": [
"test"
],
"modulePathIgnorePatterns": [
"docs"
]
},
"author": ""
}