-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "tutor_project",
"version": "1.0.0",
"description": "pog",
"main": "server.js",
"type": "commonjs",
"scripts": {
"test": "nodemon server.js",
"start": "node server.js",
"clean": "rimraf www",
"build:frontend": "cd frontend && npm run build",
"copy": "copyfiles -V -u 2 \"frontend/build/**/*\" www",
"www": "npm run clean && npm run build:frontend && npm run copy",
"deploy": "echo Not implemented yet!!!",
"install_deps": "npm install && cd frontend && npm install",
"local": "npm run install_deps && npm run www && echo Done. Go to http://localhost:5000 in your browser. && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zsim314/Tutor_Project.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/zsim314/Tutor_Project/issues"
},
"homepage": "https://github.com/zsim314/Tutor_Project#readme",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"chalk": "^2.4.0",
"concurrently": "^7.6.0",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"is-empty": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.10.0",
"mongoose-unique-validator": "^3.1.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.22",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"react": "^18.2.0",
"validator": "^13.9.0"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"rimraf": "^4.1.2"
},
"keywords": []
}