-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.23 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
{
"name": "cheetbook",
"version": "1.0.0",
"description": "A project to help developers access commands quicker",
"main": "./client/index.js",
"scripts": {
"test": "mocha",
"lint": "eslint client/src",
"start": "webpack-dev-server --open --watch --hot",
"build": "webpack ",
"serve": "nodemon backend/server.js",
"dbon": "mongod"
},
"repository": {
"type": "git",
"url": "git@github.com:phavor/cheetbook.git git@gitlab.com:Reacted/cheetbook.git"
},
"keywords": [
"mern",
"react",
"mongodb",
"cheetsheet",
"cheetbook"
],
"author": "Fayvor George",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^3.1.2",
"@material-ui/icons": "^3.0.1",
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-preset-env": "1.5.2",
"babel-preset-react": "6.24.1",
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"config": "^2.0.1",
"cors": "^2.8.4",
"css-loader": "^1.0.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-validator": "^5.3.0",
"http-auth": "^3.2.3",
"joi": "^13.6.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.11",
"mongoose": "^5.2.13",
"morgan": "^1.9.1",
"node-sass": "^4.9.2",
"normalize.css": "^8.0.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"prop-types": "^15.6.2",
"react": "^16.4.0",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.4.0",
"react-icons": "^3.0.5",
"react-modal": "^3.5.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"redux-devtools": "^3.4.1",
"redux-logger": "^3.0.6",
"sass-loader": "^7.1.0",
"typeface-roboto": "0.0.54",
"validator": "8.0.0",
"webpack": "3.1.0",
"webpack-dev-server": "2.5.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"concurrently": "^4.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.18.4"
}
}