generated from scaffoldly/github-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 2.19 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
{
"name": "github-sls-rest-api",
"version": "1.0.25",
"license": "UNLICENSED",
"engines": {
"node": ">=0.14"
},
"scripts": {
"prepare": "./scripts/prepare.sh",
"build": "tsc",
"start": "SLS_DEBUG=* serverless offline start",
"deploy": "SLS_DEBUG=* serverless deploy",
"serverless": "SLS_DEBUG=* serverless",
"dotenv": "dotenv-out -f typescript -e .env -e .scaffoldly/.env -c $NODE_ENV -o src",
"openapi": "openapi-generator -g axios -i .scaffoldly/$NODE_ENV -o src/services/openapi -r auth-sls-rest-api",
"types": "ts-node types.ts",
"tsoa": "node tsoa.js",
"dynamodb": "serverless dynamodb install",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix && yarn run prettier --write '*/**/*.{js,ts,tsx}'"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@scaffoldly/openapi-generator": "^1.0.21",
"@types/aws-lambda": "^8.10.77",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/node": "14",
"@types/seedrandom": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"cross-env": "^7.0.3",
"dotenv-out": "^1.0.6",
"eslint": "^7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "14.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"serverless": "2.57.0",
"serverless-bundle": "^4.4.0",
"serverless-dotenv-plugin": "^3.9.0",
"serverless-dynamodb-local": "^0.2.40",
"serverless-offline": "^8.1.0",
"serverless-offline-dynamodb-streams": "^5.0.0",
"serverless-plugin-resource-tagging": "^1.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"@scaffoldly/serverless-util": "^4.0.33",
"@vendia/serverless-express": "^4.5.2",
"aws-lambda": "^1.0.6",
"axios": "^0.21.1",
"express": "^4.17.1",
"joi": "^17.4.0",
"joi-to-typescript": "^1.12.0",
"moment": "^2.29.1",
"seedrandom": "^3.0.5",
"tsoa": "^3.8.0",
"ulid": "^2.3.0"
}
}