This repository was archived by the owner on Sep 23, 2023. It is now read-only.
forked from kuuup/mobx-ssr-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "mobx-ssr-example",
"version": "1.0.1",
"description": "Server-side rendering with mobx and react-router",
"main": "src/index.js",
"scripts": {
"mockAPI": "node src/api_server_mock/server.js",
"start": "node src/index.js",
"watch": "nodemon src/index.js",
"build:client": "gulp app"
},
"author": "Peter Kupietz",
"repository": {
"type": "git",
"url": "https://github.com/kuuup/mobx-ssr-example.git"
},
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.9.1",
"express": "^4.14.0",
"mobx": "^2.3.3",
"mobx-react": "^3.4.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-router": "^2.5.1",
"request": "^2.75.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.10.3",
"babel-plugin-transform-react-constant-elements": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.13.1",
"eslint-plugin-react": "^5.1.1",
"gulp": "^3.9.1",
"gulp-util": "^3.0.7",
"json-loader": "^0.5.4",
"mobx-react-devtools": "^4.2.9",
"webpack": "^1.13.0"
}
}