-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.02 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
{
"name": "razzle-starter",
"version": "0.0.1",
"description": "A boilerplate starter for server-side rendered React applications built with Razzle.",
"scripts": {
"clean": "rm -rf node_modules && rm package-lock.json",
"dev": "razzle start",
"test": "razzle test",
"build": "razzle build",
"build-sitemap": "node src/config/buildSitemap.js",
"start": "NODE_ENV=production node build/server.js",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"body-parser": "1.19.0",
"classnames": "2.2.6",
"compression": "1.7.4",
"cookie-parser": "1.4.4",
"dotenv": "8.0.0",
"express": "4.17.1",
"express-session": "1.16.1",
"helmet": "3.18.0",
"html-minifier": "4.0.0",
"js-cookie": "2.2.0",
"lodash": "4.17.13",
"mdi-react": "5.4.0",
"passport": "0.4.0",
"passport-bnet": "2.0.0",
"passport-facebook": "3.0.0",
"passport-github": "1.1.0",
"passport-google-oauth": "2.0.0",
"passport-instagram": "1.0.0",
"passport-linkedin": "1.0.0",
"passport-pinterest": "1.0.0",
"passport-twitter": "1.0.4",
"prop-types": "15.7.2",
"razzle": "3.0.0",
"razzle-heroku": "3.0.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-redux": "7.0.3",
"react-router-dom": "5.0.0",
"recompose": "0.30.0",
"redux": "4.0.1",
"redux-devtools-extension": "2.13.8",
"redux-thunk": "2.3.0",
"serialize-javascript": "2.1.1",
"sitemaps": "0.0.2",
"socket.io": "2.2.0",
"socket.io-client": "2.2.0"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/preset-env": "7.4.5",
"babel-eslint": "10.0.1",
"babel-plugin-module-resolver": "3.2.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-react-app": "4.0.1",
"eslint-plugin-flowtype": "3.9.1",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-react-hooks": "1.6.0",
"node-sass": "4.12.0",
"sass-loader": "7.1.0"
}
}