This repository has been archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 2.04 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
{
"name": "ground-control",
"version": "0.6.2",
"description": "Scalable reducer management and data fetching for React Router / Redux.",
"main": "lib/GroundControl.js",
"jsnext:main": "modules/GroundControl.js",
"files": [
"*.md",
"lib",
"modules"
],
"repository": {
"type": "git",
"url": "https://github.com/RaiseMarketplace/ground-control.git"
},
"bugs": "https://github.com/RaiseMarketplace/ground-control/issues",
"scripts": {
"clean": "rimraf lib",
"build": "babel ./modules -d lib --ignore '__tests__'",
"start": "babel ./modules -d lib --ignore '__tests__' --watch",
"start-ex": "babel-node example/server.js",
"test": "babel-tape-runner modules/__tests__/*.js",
"prepublish": "npm run clean && npm run build"
},
"authors": [
"Nick Dreckshage"
],
"license": "MIT",
"peerDependencies": {
"history": "^2.0.0",
"react": "^15.0.x",
"react-router": "^2.0.0"
},
"dependencies": {
"deep-equal": "^1.0.1",
"history": "^2.0.0",
"lodash": "^4.2.1",
"react": "^15.0.1",
"react-redux": "^4.4.0",
"react-router": "^2.0.0",
"redux": "^3.3.1"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^5.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.4.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-tape-runner": "^2.0.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^1.0.2",
"eslint-plugin-react": "^3.11.2",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-router": "^2.5.2",
"redux": "^3.5.2",
"rimraf": "^2.5.0",
"tape": "^4.4.0"
},
"tags": [
"react",
"react router",
"data",
"redux",
"redux-simple-router",
"flux",
"universal",
"isomorphic"
],
"keywords": [
"react",
"react router",
"data",
"redux",
"redux-simple-router",
"flux",
"universal",
"isomorphic"
]
}