-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 867 Bytes
/
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
{
"name": "stock-iq",
"version": "1.0.0",
"main": "server.js",
"author": "Mridul Gogia",
"license": "MIT",
"scripts": {
"client-install": "yarn add --prefix client",
"client": "yarn run start --prefix client",
"start": "node server.js",
"devServer": "nodemon server.js",
"dev": "concurrently \"yarn run devServer\" \"yarn run client\""
},
"dependencies": {
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"gravatar": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.10",
"mongoose-unique-validator": "^2.0.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"twilio": "^3.42.2",
"validator": "^13.0.0"
},
"devDependencies": {
"nodemon": "^2.0.3"
}
}