-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "app",
"version": "1.0.0",
"description": "Example Serverless App",
"author": "Techmmunity",
"private": false,
"license": "Apache-2.0",
"dependencies": {
"@techmmunity/symbiosis": "^0.0.29",
"@techmmunity/symbiosis-dynamodb": "^0.0.17",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.2"
},
"devDependencies": {
"@serverless/typescript": "^2.67.0",
"@techmmunity/eslint-config": "^5.1.3",
"@types/aws-lambda": "^8.10.85",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.3",
"aws-sdk": "^2.1040.0",
"dotenv": "^10.0.0",
"eslint": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.4.3",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"serverless": "^2.67.0",
"serverless-localstack": "^0.4.35",
"serverless-offline": "^8.3.1",
"serverless-vercel-ncc": "^0.0.6",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"scripts": {
"prepare": "husky install",
"build": "serverless package",
"start": "node dist/index.js",
"format": "eslint . --fix --quiet",
"lint": "eslint . --quiet",
"dev": "serverless offline",
"dev:docker": "serverless deploy --stage local",
"docker": "docker-compose up --build",
"test": "jest --passWithNoTests",
"test:cov": "jest --coverage --passWithNoTests",
"upgrade-dependencies": "yarn upgrade-interactive --latest",
"temp:test-tsc": "tsc",
"husky:pre-commit": "tsc && yarn lint"
}
}