-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.67 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.67 KB
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
{
"name": "clubsin",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "8.11.3"
},
"scripts": {
"test": "set NODE_ENV=test&& mocha --timeout 10000 --compilers js:babel-core/register",
"start:server": "cd server && nodemon server.js --exec babel-node --presets es2015,stage-0",
"start:client": "cd client && npm start",
"debug": "concurrently \"cd server && nodemon --inspect server.js --exec babel-node --presets es2015,stage-0\" \"npm run start:client\"",
"start": "concurrently \"npm run start:server\" \"npm run start:client\"",
"build": "concurrently \"npm run start:server\" \"cd client && npm run build\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/YahyaZ/ClubsIn.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/YahyaZ/ClubsIn/issues"
},
"homepage": "https://github.com/YahyaZ/ClubsIn#readme",
"dependencies": {
"@material-ui/core": "^3.1.2",
"@material-ui/icons": "^3.0.1",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"concurrently": "^3.6.1",
"connect-mongo": "^2.0.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"enzyme": "^3.6.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"input-moment": "^0.4.0",
"jsonwebtoken": "^8.3.0",
"moment": "^2.22.2",
"mongoose": "^5.2.6",
"morgan": "^1.9.0",
"nodemon": "^1.18.3",
"prop-types": "^15.6.2",
"randomcolor": "^0.5.3",
"react": "^16.4.2",
"react-bootstrap": "^0.32.1",
"react-bootstrap-date-picker": "^5.1.0",
"react-bootstrap-datetimepicker": "0.0.22",
"react-datepicker": "^1.6.0",
"react-dates": "^18.1.0",
"react-dom": "^16.4.2",
"react-icons": "^3.0.5",
"react-loading": "^2.0.3",
"react-loading-skeleton": "^0.6.1",
"react-markdown": "^3.4.1",
"react-redux": "^5.0.7",
"react-router": "^3.2.1",
"react-router-bootstrap": "^0.23.3",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"react-scripts": "1.1.4",
"react-spinners": "^0.4.5",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"uninstall": "0.0.0",
"whatwg-fetch": "^2.0.4",
"winston": "^3.1.0"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"chai": "^3.2.0",
"chai-http": "^1.0.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"superagent": "^4.0.0-beta.5",
"supertest": "^3.3.0"
}
}