-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.59 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
{
"name": "tide",
"version": "1.0.0-dev.13",
"registry": "github",
"description": "Tide is a Model-View-Presenter framework for quickly building client-side applications with React and MobX.",
"main": "index.js",
"web": "index.js",
"bin": "index.js",
"author": "Kay Sackey",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/KaySackey/tide.git"
},
"directories": {
"lib": "src",
"doc": "docs"
},
"homepage": "https://github.com/KaySackey/tide",
"babel": {
"presets": [
["es2015", {"loose": true}],
"react",
"stage-0"
],
"env": {
"production": {
"plugins": [
"transform-react-constant-elements",
"transform-react-inline-elements",
"transform-decorators-legacy",
"transform-runtime"
]
}
}
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0"
},
"dependencies": {
"react": "^15.3.1",
"react-dom": "^15.3.1",
"mobx": "^2.4.3",
"mobx-react": "^3.5.5",
"mobx-react-devtools": "^4.2.4",
"mobx-remotedev": "^0.1.3",
"serializr": "^1.1.6",
"moment": "^2.17.1",
"crossroads": "^0.12.2",
"history": "^4.0.0"
}
}