-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.95 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "voyage",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@emotion/core": "^10.0.6",
"@emotion/styled": "^10.0.6",
"@material-ui/core": "^3.9.1",
"@material-ui/icons": "^3.0.1",
"alphavantage": "^1.2.0",
"axios": "^0.18.0",
"axios-jsonp": "^1.0.2",
"axios-retry": "^3.1.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"classnames": "^2.2.6",
"cloudinary": "^1.13.2",
"cloudinary-react": "^1.1.0",
"concurrently": "^4.0.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^6.1.0",
"ejs": "^2.6.1",
"emotion": "^10.0.6",
"express": "^4.16.4",
"express-session": "^1.15.6",
"http-proxy-middleware": "^0.19.1",
"jade": "^1.11.0",
"jsonp": "^0.2.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mongodb": "^3.1.8",
"mongoose": "^5.3.14",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"newsapi": "^2.4.0",
"node-sass": "^4.10.0",
"nodemon": "^1.18.4",
"parallax-js": "^3.1.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"react": "^16.6.3",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.6.3",
"react-draggable": "^3.1.1",
"react-dropzone": "^8.0.4",
"react-emotion": "^10.0.0",
"react-google-charts": "^3.0.10",
"react-images-upload": "^1.2.6",
"react-infinite-scroller": "^1.2.2",
"react-modal": "^3.6.1",
"react-notifications": "^1.4.3",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.1",
"react-scroll": "^1.7.10",
"react-spinners": "^0.4.7",
"react-tooltip": "^3.9.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"retry-axios": "^0.4.1",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"validator": "^10.10.0"
},
"scripts": {
"start-dev": "concurrently \"react-scripts start\" \"nodemon server/app\"",
"start": "node server/server.js",
"react": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write \"{server,src}/**/*.+(js|scss|md|json)\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install && npm run build"
},
"eslintConfig": {
"extends": "react-app",
"plugins": [
"prettier"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"env": {
"es6": true,
"node": true,
"browser": true
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"eslint-config-prettier": "^3.3.0",
"husky": "^1.2.0",
"prettier": "1.15.3",
"pretty-quick": "^1.8.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}