-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 965 Bytes
/
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
{
"name": "tyler-fretz-portfolio",
"version": "1.0.0",
"engines": {
"node": "14.x"
},
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"deploy": "git push heroku master",
"build:ui": "rm -rf build && cd ./client && npm run build --prod && cp -r build ../",
"deploy:full": "npm run build:ui && git add --a && git commit -m uibuild && npm run deploy",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
},
"keywords": [],
"author": "Tyler Fretz",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-ses": "^3.48.0",
"@aws-sdk/credential-provider-node": "^3.48.0",
"aws-sdk": "^2.1062.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-validator": "^6.12.0",
"nodemailer": "^6.7.2"
},
"devDependencies": {
"eslint": "^7.29.0",
"nodemon": "^2.0.7"
}
}