-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.71 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
{
"name": "serverless-starter-app",
"version": "1.0.0",
"description": "Comic Relief serverless starter application",
"author": "Adam Clark",
"license": "MIT",
"repository": "https://github.com/comicrelief/serverless-starter-app",
"scripts": {
"lint": "eslint .",
"concourse:deploy-pipeline": "fly -t cr-cicd-engineering set-pipeline -p serverless-starter-app -c concourse/pipeline.yml -l concourse/private.yml",
"concourse:login": "fly --target cr-cicd-engineering login --concourse-url https://ci.services.comicrelief.com --team-name engineering",
"concourse:sync": "sudo fly -t ci sync",
"offline": "sls offline",
"test": "jest --colors",
"test:feat": "yarn test --selectProjects FEAT",
"test:feat:regression": "yarn test:feat --testNamePattern=REGRESSION",
"test:feat:sanity": "yarn test:feat --testNamePattern=SANITY",
"test:offline": "USE_SERVERLESS_OFFLINE=1 yarn test:feat",
"test:unit": "yarn test --selectProjects UNIT"
},
"devDependencies": {
"@comicrelief/eslint-config": "^2.0.3",
"@types/chalk": "^2.2.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.15.12",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"dotenv": "^8.2.0",
"eslint": "^8.38.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^43.0.6",
"jest": "^29.5.0",
"prettier": "^2.1.1",
"serverless": "^3.36.0",
"serverless-offline": "^13.2.0",
"serverless-plugin-typescript": "^2.1.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@comicrelief/lambda-wrapper": "^2.0.0-beta.3",
"axios": "^1.3.6"
}
}