forked from gothinkster/react-mobx-realworld-example-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 864 Bytes
/
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
{
"name": "react-mobx-realworld-example-app",
"version": "0.1.0",
"private": true,
"homepage": "https://react-mobx.realworld.io",
"license": "MIT",
"devDependencies": {
"custom-react-scripts": "0.2.0",
"gh-pages": "^1.0.0"
},
"dependencies": {
"history": "4.7.2",
"marked": "^0.3.6",
"mobx": "^3.2.2",
"mobx-react": "^4.2.2",
"promise.prototype.finally": "^3.0.0",
"prop-types": "^15.5.10",
"query-string": "5.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router-dom": "4.2.2",
"superagent": "^3.6.0",
"superagent-promise": "^1.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
}