-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.04 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
{
"name": "rearn",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "8.9.3",
"npm": "5.6.0",
"yarn": "1.5.1"
},
"scripts": {
"build": "next build",
"start": "cross-env NODE_ENV=production node server/server.js",
"test": "eslint pages components lib",
"dev": "nodemon server/server.js --watch server --exec node server/server.js",
"port": "cross-env PORT=4000 yarn start",
"prod": "yarn build && cross-env NODE_ENV=production node server/server.js",
"precommit": "yarn test",
"prepush": "yarn test",
"heroku-postbuild": "yarn build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@zeit/next-sass": "^0.1.2",
"axios": "^0.18.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"body-parser": "^1.18.2",
"bootstrap": "4.0.0",
"bootstrap-material-design": "^4.1.1",
"compression": "^1.7.2",
"connect-mongo": "^2.0.1",
"cors": "^2.8.4",
"cross-env": "^5.1.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"express-useragent": "^1.0.12",
"jquery": "^3.3.1",
"lodash": "^4.17.10",
"material-ui": "^0.20.0",
"moment": "^2.22.1",
"mongoose": "^5.0.15",
"next": "5.1.0",
"next-offline": "^2.5.0",
"next-redux-wrapper": "^1.3.5",
"next-routes": "^1.4.1",
"node-sass": "^4.8.3",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-popper": "^0.10.1",
"react-redux": "^5.0.7",
"react-reveal": "^1.2.1",
"redux": "^4.0.0",
"redux-form": "^7.3.0",
"redux-thunk": "^2.2.0",
"workbox-background-sync": "^3.0.1"
},
"browserslist": [
"> 1%"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"eslint": "4.9.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-compat": "^2.2.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.4.0",
"husky": "^0.14.3"
}
}