-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.27 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.27 KB
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
{
"name": "we_project",
"version": "1.0.0",
"description": "- Install all the dependencies: `npm i`\r - Build and run at the localhost PORT=3000: `npm start`\r - Login Credential `username:password`\r - user: `user:user`\r - admin: `admin:admin`",
"main": "server.js",
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.25.1",
"connect-mongo": "^4.4.1",
"connect-multiparty": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mongodb": "^3.6.5",
"mongoose": "^5.12.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm run build && cd .. && npm i && node server.js",
"setup": "npm install && cd client && npm install && cd ..",
"build-run": "cd client && npm run build && cd .. && node server.js",
"dev": "nodemon ./server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csc309-winter-2021/team18.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/csc309-winter-2021/team18/issues"
},
"homepage": "https://github.com/csc309-winter-2021/team18#readme"
}