-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "example-api",
"version": "1.0.0",
"description": "MovieTracker",
"engines": {
"node": "6.4.0",
"npm": "3.10.x"
},
"scripts": {
"build": "webpack --config ./webpack.config.js",
"dev-server": "webpack-dev-server --hot --inline --content-base --history-api-fallback",
"start": "node server.js",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"keywords": [],
"author": "Taylor Moore",
"license": "ISC",
"dependencies": {
"bluebird": "^3.3.4",
"body-parser": "^1.16.0",
"express": "^4.14.0",
"express-cors": "0.0.3",
"pg-promise": "^3.2.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.1",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-jest": "^20.0.3",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"enzyme": "^2.8.2",
"fetch-mock": "^5.11.0",
"jest": "^20.0.3",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-hot-loader": "^1.3.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"redux-mock-store": "^1.2.3",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.15.0"
}
}