-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "codebee-server",
"version": "0.1.0",
"description": "An Ed-Tech platform prototype for kids to learn coding through visualizations and real-time discussions",
"main": "server.js",
"scripts": {
"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"
},
"dependencies": {
"@sendgrid/mail": "^7.4.7",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"express": "^4.15.3",
"express-passport-logout": "^0.1.0",
"form-data": "^4.0.0",
"fs": "0.0.1-security",
"http": "0.0.1-security",
"https": "^1.0.0",
"jsonwebtoken": "^7.4.1",
"mongoose": "^5.9.9",
"mongoose-title-case": "0.0.4",
"mongoose-unique-validator": "^1.0.5",
"mongoose-validator": "^1.3.2",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"path": "^0.12.7",
"socket.io": "^4.1.2"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-google": "^0.14.0",
"concurrently": "^6.2.0",
"nodemon": "^2.0.7"
}
}