-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 925 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
34
{
"name": "dove-api",
"version": "0.0.1",
"description": "A RESTful app for Doves",
"main": "./lib/server/index.js",
"bin": "./bin/index.js",
"dependencies": {
"babel-core": "latest",
"babel-loader": "^6.1",
"babel-polyfill": "latest",
"babel-preset-es2015": "latest",
"babel-preset-react": "latest",
"babel-preset-stage-2": "latest",
"body-parser": "^1.17.2",
"isomorphic-fetch": "^2.2.1",
"json-server": "^0.9.4",
"react": "^16.2.0",
"react-redux": "latest",
"react-dom": "^16.2.0",
"react-scripts": "1.1.0",
"redux": "latest",
"redux-devtools": "latest",
"redux-logger": "latest",
"redux-persist": "^5.4.0",
"redux-thunk": "latest",
"webpack": "^3.4.1",
"webpack-dev-server": "latest"
},
"scripts": {
"start": "json-server --port 5000 --watch db.json",
"build": "webpack",
"start-dev": "react-scripts start"
}
}