-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.56 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
{
"name": "taskbarter.com",
"version": "1.0.0",
"description": "A platform where solving tasks gives you points and you can use those points to hire people.",
"main": "server.js",
"engines": {
"node": "10.15.3"
},
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"keywords": [
"task",
"taskbarter",
"barter",
"swap",
"gig",
"work",
"kaam",
"workswap",
"gigswap",
"workbarter",
"tasker"
],
"author": "Mohsin Hayat",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.1.0",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"classnames": "^2.2.6",
"concurrently": "^4.1.0",
"config": "^3.2.0",
"express": "^4.17.1",
"express-validator": "^6.1.1",
"gravatar": "^1.8.0",
"http": "0.0.1-security",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"nodemailer": "^6.2.1",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth": "^2.0.0",
"passport-jwt": "^4.0.0",
"react-phone-code": "0.0.4",
"react-scripts": "^3.3.0",
"socket.io": "^2.3.0",
"validator": "^13.7.0"
},
"devDependencies": {
"eslint-plugin-babel": "^5.3.0",
"nodemon": "^1.19.1"
}
}