forked from UF-ACE/ACE_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 847 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 847 Bytes
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"heroku-postbuild": "npm install && cd client && npm install && npm run build",
"dev": "cd client && npm run build && cd ../ && nodemon index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"decode-html": "^2.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"html-react-parser": "^1.4.11",
"mongoose": "^6.7.0",
"multer": "^1.4.4",
"path": "^0.12.7",
"react-parallax": "^3.5.1",
"react-scroll-parallax": "^3.3.1",
"serve-favicon": "^2.5.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^2.0.14"
}
}