-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
package.json
File metadata and controls
43 lines (43 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
{
"name": "owlet-worker",
"version": "1.0.0",
"main": "index.js",
"author": "carter.hesterman <[email protected]>",
"license": "MIT",
"devDependencies": {
"@hesto2/config": "^0.0.28",
"@types/jest": "^25.2.3",
"cross-env": "^7.0.2",
"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": "jest ./src",
"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": {
"@sentry/node": "^5.24.2",
"@types/aws-lambda": "^8.10.51",
"aws-sdk": "^2.684.0",
"axios": "^0.19.2",
"date-fns": "^2.14.0",
"dotenv": "^8.2.0",
"owlet-client": "^0.0.3"
}
}