-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.28 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "be-template",
"version": "1.0.0",
"main": "src/handler.js",
"license": "MIT",
"scripts": {
"deploy:env": "yarn sls deploy --stage $NODE_ENV",
"deploy": "export NODE_ENV=development && yarn deploy:env",
"deploy:production": "export NODE_ENV=production && yarn deploy:env",
"deploy:staging": "export NODE_ENV=staging && yarn deploy:env",
"cleanup:env": "yarn sls remove --stage $NODE_ENV",
"cleanup": "export NODE_ENV=development && yarn cleanup:env",
"lint": "eslint src --ext ts --no-ignore",
"flint": "yarn lint --fix",
"start": "export NODE_ENV=development && nodemon -e ts,yml,json -x yarn sls offline --httpPort 8080 --ignoreJWTSignature",
"tail": "yarn sls logs --tail --function",
"test": "jest --config ./jest.config.json",
"test:watch": "yarn test --watch",
"build": "yarn sls webpack"
},
"lint-staged": {
"**/*.(js|ts)": [
"yarn lint",
"yarn test --passWithNoTests"
]
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.0",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-env": "^7.14.0",
"@babel/preset-typescript": "^7.15.0",
"@tophat/eslint-config": "^0.12.0",
"@types/aws-lambda": "^8.10.83",
"@types/jest": "^27.0.2",
"@types/node": "^17.0.35",
"@types/uuid": "^8.3.1",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^27.2.4",
"lint-staged": "^12.4.1",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"serverless": "^3.8.0",
"serverless-offline": "^8.2.0",
"serverless-webpack": "^5.5.4",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"ts-node": "^10.8.0",
"typescript": "^4.7.2",
"webpack": "^5.56.0"
},
"dependencies": {
"aws-sdk": "^2.997.0",
"aws-xray-sdk": "^3.3.1",
"firebase-admin": "^10.0.0",
"uuid": "^8.3.0"
}
}