-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "checkin",
"version": "1.0.0",
"description": "A Checkin MERN Stack Application to help connect students at University",
"main": "server.js",
"scripts": {
"start": "node server",
"server": "nodemon server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/csc309-fall-2019/team30.git"
},
"author": "Abdullah Amin",
"license": "ISC",
"bugs": {
"url": "https://github.com/csc309-fall-2019/team30/issues"
},
"homepage": "https://github.com/csc309-fall-2019/team30#readme",
"dependencies": {
"axios": "^0.19.0",
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"config": "^3.2.4",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"mongoose": "^5.7.12",
"passport": "^0.4.0",
"passport-custom": "^1.1.0",
"passport-jwt": "^4.0.0",
"react-s-alert": "^1.4.1",
"reactstrap": "^8.1.1",
"redux-persist": "^6.0.0",
"validator": "^12.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"concurrently": "^5.0.0",
"nodemon": "^1.19.4",
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}