-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "language-project",
"version": "0.0.1",
"description": "Framework for language apps",
"main": "server",
"scripts": {
"dev": "concurrently \"nodemon server\" \"cd app && npm start\"",
"start": "node server",
"client-build": "cd app && npm run build",
"commit": "git add . && git commit -am",
"deploy": "git push heroku master && git push origin master"
},
"keywords": [
"js",
"node",
"react",
"express",
"language",
"app",
"learning"
],
"author": "delesslin",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^7.4.0",
"axios": "^0.21.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"heroku-ssl-redirect": "^0.1.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.0",
"mongoose": "^5.10.11",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.4",
"react": "^17.0.1",
"react-html-email": "^3.0.0"
}
}