-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.4 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
40
41
42
43
44
45
46
{
"name": "notification-service",
"version": "1.0.0",
"main": "index.js",
"author": "carter.hesterman <[email protected]>",
"license": "MIT",
"devDependencies": {
"@hesto2/config": "^0.0.26",
"@types/aws-lambda": "^8.10.51",
"@types/aws-serverless-express": "^3.3.3",
"@types/express": "^4.17.6",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.1.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"scripts": {
"watch": "yarn cross-env NODE-ENV=development nodemon -e ts --exec ts-node ./src/local.ts",
"test": "echo 'no tests yet'",
"prebuild": "rm -rf ./dist/; mkdir ./dist",
"build": "tsc && cp package.json ./dist && cd ./dist && yarn install --prod && cd ../",
"predeploy": "cd ./dist && yarn install --prod && zip -q -r ../terraform/deploy.zip ./",
"deploy": "cd ./terraform && npm install && terraform init && terraform apply -auto-approve"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@hesto2/express-utils": "^0.0.2",
"@sentry/node": "^5.24.2",
"@slack/web-api": "^5.9.0",
"aws-sdk": "^2.683.0",
"aws-serverless-express": "^3.3.8",
"axios": "^0.19.2",
"express": "^4.17.1"
}
}