forked from operationfrnd/meal-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.09 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": "meal-maker",
"version": "1.0.0",
"description": "Make meals",
"main": "index.js",
"scripts": {
"start": "node ./server/index.js",
"test": "mocha",
"react-dev": "webpack -d --watch",
"server-dev": "nodemon --inspect server/index.js",
"build": "node ./server/index.js && webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/operationfrnd/meal-maker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/operationfrnd/meal-maker/issues"
},
"homepage": "https://github.com/operationfrnd/meal-maker#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.3",
"babel-core": "^6.23.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"url-loader": "^1.1.2",
"webpack": "^2.2.1"
},
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"@types/auth0-js": "^8.11.11",
"auth0": "^2.14.0",
"auth0-js": "^9.10.0",
"axios": "^0.18.0",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"classnames": "^2.2.6",
"cookie-session": "^2.0.0-beta.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"errorhandler": "^1.5.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"express-mysql-session": "^2.1.0",
"express-session": "^1.15.6",
"hash-sum": "^1.0.2",
"jquery": "^3.3.1",
"jsonwebtoken": "^8.5.0",
"lodash": "^4.17.11",
"mocha": "^6.0.1",
"morgan": "^1.9.1",
"mysql": "^2.16.0",
"nodemon": "^1.18.10",
"passport": "^0.4.0",
"passport-auth0": "^1.1.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"request": "^2.88.0",
"typeface-roboto": "0.0.54"
}
}