-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "ottawa-river-whitewater",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start-server": "node server.js",
"dev": "concurrently \"nodemon server.js\" \"cd client && npm start\"",
"start-client": "cd client && npm run start",
"build-client": "cd client && npm run build",
"full-install": "npm install && cd client && npm install",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JeffThorslund/jeffrey.thorslund-gmail.com.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JeffThorslund/jeffrey.thorslund-gmail.com/issues"
},
"homepage": "https://github.com/JeffThorslund/jeffrey.thorslund-gmail.com#readme",
"dependencies": {
"body-parser": "^1.19.0",
"change-case": "^4.1.1",
"compression": "^1.7.4",
"concurrently": "^5.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ncp": "^2.0.0",
"nodemailer": "^6.4.6",
"socket.io": "^2.4.0"
},
"devDependencies": {
"nodemon": "^2.0.3"
}
}