-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.24 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
{
"name": "the-beer-feed",
"version": "1.0.0",
"description": "The Beer Feed",
"main": "app.js",
"scripts": {
"test": "./node_modules/.bin/jest --coverage",
"start": "NODE_ENV=production node app.js",
"dev": "react-scripts start",
"server": "nodemon app.js",
"build": "react-scripts build",
"postinstall": "npm run build",
"testDbg": "node debug --harmony ./node_modules/jest-cli/bin/jest.js --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lematt1991/BeerFeed.git"
},
"author": "Matt Le",
"license": "ISC",
"bugs": {
"url": "https://github.com/lematt1991/BeerFeed/issues"
},
"homepage": "/",
"optionalDependencies": {
"fsevents": "*"
},
"dependencies": {
"axios": "^0.18.1",
"bluebird": "^3.7.2",
"body-parser": "^1.20.1",
"dotenv": "^5.0.1",
"express": "^4.18.2",
"history": "^4.10.1",
"immutability-helper": "^2.9.1",
"lodash": "^4.17.21",
"mongoose": "^5.13.15",
"node-untappd": "git+https://github.com/lematt1991/node-untappd.git",
"pg": "^7.18.2",
"react": "^16.14.0",
"react-bootstrap": "^0.32.4",
"react-cookie": "^2.2.0",
"react-dom": "^16.14.0",
"react-google-maps": "^9.4.5",
"react-redux": "^5.1.2",
"react-router": "^4.3.1",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.8",
"react-scripts": "^1.1.5",
"react-search-input": "^0.11.3",
"react-select": "^1.3.0",
"react-spinkit": "^3.0.0",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"request": "^2.88.2",
"twit": "^2.2.11",
"universal-cookie": "^2.2.0",
"untappd-js": "^1.0.3",
"url": "^0.11.0"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"enzyme-to-json": "^3.6.2",
"flow-bin": "^0.70.0",
"jest": "^22.4.4",
"jest-cli": "^22.4.4",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.14.0",
"sinon": "^4.5.0"
},
"proxy": "http://localhost:3001",
"jest": {
"moduleNameMapper": {
"^.*[.](jpg|JPG|gif|GIF|png|PNG|less|LESS|css|CSS)$": "EmptyModule"
}
}
}