-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
55 lines (55 loc) · 2.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
47
48
49
50
51
52
53
54
55
{
"name": "bamboo-on-teams-v1",
"description": "Bamboo on teams v1",
"version": "1.0.0",
"private": true,
"scripts": {
"CI": "***************************************************************************************************************************************************",
"build": "npm-run-all clean compile",
"test-ci": "jest --ci --testResultsProcessor=\"jest-junit\" --forceExit --detectOpenHandles --coverage",
"package-ci": "which serverless && export SLS_DEBUG=* && serverless package -v --stage test",
"deploy-ci": "which serverless && export SLS_DEBUG=* && serverless deploy -v --region ap-southeast-2 --stage test",
"SCRIPTS": "**********************************************************************************************************************************************",
"install-check": "find node_modules -maxdepth 0 -type d || npm install",
"lint": "eslint '*/**/*.ts' --quiet --fix",
"test": "jest --silent",
"test-watch": "jest --watchAll",
"clean": "rimraf dist",
"compile": "tsc --project tsconfig.json",
"compile-watch": "tsc -w --project tsconfig.json"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.61",
"@types/jest": "^26.0.10",
"@types/node": "^14.14.10",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"aws-sdk": "^2.876.0",
"axios": "^0.21.1",
"commander": "^8.3.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"lambda-api": "^0.10.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"serverless": "2.21.0",
"serverless-offline": "^6.8.0",
"serverless-offline-ssm": "^5.2.0",
"serverless-plugin-common-excludes": "^3.0.0",
"serverless-plugin-include-dependencies": "^4.0.0",
"serverless-step-functions": "^2.21.1",
"serverless-prune-plugin": "2.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^8.10.2",
"typescript": "^4.1.2",
"ultra-runner": "^3.6.0",
"uuid": "^8.3.2"
}
}