-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.64 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "multiple-autosuggest",
"version": "1.0.0",
"description": "show autosuggest results from multiple apis",
"keywords": [
"react",
"redux",
"minimal"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/catalin-luntraru/redux-minimal"
},
"scripts": {
"postinstall": "npm run build-prod",
"start": "npm run server",
"dev": "webpack-dev-server --inline --hot --history-api-fallback --host localhost --port 8080",
"build-dev": "npm test && webpack --config webpack.dev.config.js",
"build-prod": "webpack -p --config webpack.prod.config.js",
"test": "jest --verbose",
"test-watch": "npm test -- --watchAll",
"server": "node index.js",
"db" : "mongod --config mongodb.conf",
"db-data" : "mongorestore -d Hotelsdb mongodb/sampledata/Hotelsdb/hotels.bson"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-3"
]
},
"author": "Piyush Gupta",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-css-modules-transform": "^1.2.7",
"babel-register": "^6.24.1",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"fs": "0.0.1-security",
"mongodb": "^2.2.30",
"mongoose": "^4.11.1",
"node-sass": "^4.5.3",
"react": "^15.4.2",
"react-autosuggest": "^9.1.0",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.1",
"react-router-bootstrap": "^0.23.1",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-form": "^6.4.3",
"redux-saga": "^0.14.3",
"redux-thunk": "^2.2.0",
"sass-loader": "^4.1.1"
},
"devDependencies": {
"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-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-3": "^6.17.0",
"babel-runtime": "^6.20.0",
"clean-webpack-plugin": "^0.1.15",
"css-loader": "^0.26.1",
"enzyme": "^2.7.0",
"extract-text-webpack-plugin": "^1.0.1",
"ignore-styles": "^5.0.1",
"jest": "^20.0.4",
"mocha": "^3.2.0",
"node-sass": "^4.3.0",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^1.3.1",
"react-test-renderer": "^15.6.1",
"redux-freeze": "^0.1.5",
"redux-mock-store": "^1.2.3",
"regenerator-runtime": "^0.10.5",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"whatwg-fetch": "^2.0.1"
}
}