forked from gaeduron/Matcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.5 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
114
115
116
117
{
"name": "boilerplate-react-app",
"version": "1.0.0",
"main": "index.js",
"author": "Andrew Mead",
"license": "MIT",
"scripts": {
"build:dev": "webpack",
"build:prod": "webpack -p --env production",
"dev:front": "webpack --watch",
"dev:back": "nodemon server/server.js --watch server",
"test": "cross-env NODE_ENV=test jest --config=jest.config.json",
"start": "node server/server.js",
"heroku-postbuild": "yarn run build:prod",
"pg": "heroku pg:psql postgresql-parallel-87111 --app matcha-gduron",
"lint": "eslint ./src ./server"
},
"dependencies": {
"@sendgrid/mail": "^6.1.4",
"antd": "^3.1.4",
"axios": "^0.17.1",
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.5.2",
"babel-preset-react": "6.24.1",
"babel-preset-stage-1": "^6.24.1",
"bcryptjs": "^2.4.3",
"change-object-case": "*",
"css-loader": "0.28.4",
"dotenv": "^4.0.0",
"element-react": "^1.4.3",
"element-theme-default": "^1.4.11",
"emoji-mart": "^2.4.2",
"eslint": "^4.11.0",
"express": "4.15.4",
"extract-text-webpack-plugin": "3.0.0",
"faker": "^4.1.0",
"fast-deep-equal": "^1.1.0",
"file-loader": "^1.1.5",
"firebase": "4.2.0",
"gender": "^0.0.1",
"history": "4.7.2",
"immutability-helper": "^2.6.3",
"is-coordinates": "^2.0.2",
"izitoast": "*",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.5",
"logform": "^1.2.1",
"material-ui": "0.19.0",
"material-ui-chip-input": "^0.18.3",
"moment": "^2.19.3",
"node-sass": "4.5.3",
"nodemailer": "^4.4.0",
"nodemon": "^1.12.1",
"normalize.css": "7.0.0",
"numeral": "2.0.6",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"pg": "^7.4.0",
"pg-format": "^1.0.4",
"postgres-array": "^1.0.2",
"prop-types": "^15.6.0",
"ramda": "^0.25.0",
"random-location": "^1.0.12",
"react": "^16.2.0",
"react-addons-shallow-compare": "15.6.0",
"react-anime": "2.1.0",
"react-async-script": "^0.9.1",
"react-avatar-editor": "^10.3.0",
"react-dates": "12.3.0",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "16.0.0",
"react-google-maps": "^9.4.5",
"react-google-recaptcha": "^0.9.9",
"react-key-index": "^0.1.1",
"react-md-spinner": "^0.2.5",
"react-modal": "^3.1.10",
"react-redux": "5.0.5",
"react-router-dom": "4.2.2",
"react-smooth": "^1.0.0",
"react-textarea-autosize": "^5.2.1",
"recompose": "^0.26.0",
"redux": "3.7.2",
"redux-batch-middleware": "0.2.0",
"redux-mock-store": "1.2.3",
"redux-socket.io": "^1.4.0",
"redux-thunk": "2.2.0",
"s-age": "^1.1.2",
"s-ago": "^1.2.2",
"sass-loader": "6.0.6",
"shuffle-array": "^1.0.1",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"style-loader": "0.18.2",
"uglifyjs-webpack-plugin": "^1.2.4",
"uuid": "3.1.0",
"validator": "8.0.0",
"webpack": "3.1.0",
"winston": "^3.0.0-rc1"
},
"devDependencies": {
"cross-env": "5.0.5",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"jest": "20.0.4",
"webpack-dev-server": "2.5.1"
}
}