-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 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
38
39
40
41
42
43
44
45
46
{
"name": "large-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/index",
"server": "nodemon server/index -L",
"client": "cd client && yarn start",
"build": "cd client && yarn run build",
"dev": "concurrently \"yarn run server\" \"yarn run client\"",
"production": "cross-env NODE_ENV=production node server/index",
"heroku-postbuild": "cd client && yarn && yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/COP-4331C/Large-Project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/COP-4331C/Large-Project/issues"
},
"homepage": "https://github.com/COP-4331C/Large-Project#readme",
"dependencies": {
"aws-sdk": "^2.1035.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.8",
"multer": "^1.4.3",
"nodemailer": "^6.7.0",
"query-string": "^7.0.1",
"react-scripts": "^4.0.3",
"sharp": "^0.29.3",
"socket.io": "^4.4.0",
"url-search-params": "^1.1.0"
},
"devDependencies": {
"concurrently": "^6.3.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.14"
}
}