-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
{
"name": "warzone-tracker",
"version": "0.8.0",
"license": "GPL-3.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/crolopez/warzone-tracker/"
},
"main": "dist/src/handler.js",
"author": "Cristobal Lopez Peñalver",
"scripts": {
"lint": "eslint . --ext .ts",
"build": "rimraf ./dist && tsc",
"start:local": "serverless offline",
"deploy": "serverless deploy",
"deploy:production": "yarn deploy --stage production",
"remove": "serverless remove",
"test:unit": "jest",
"test:unit:coverage": "yarn test:unit --coverage",
"test:unit:ci": "yarn test:unit --ci --runInBand",
"test:unit:coverage:ci": "yarn test:unit:ci --coverage"
},
"dependencies": {
"axios": "^0.26.1",
"moment": "^2.29.3",
"mongoose": "^6.2.7"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.93",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"aws-lambda": "^1.0.7",
"eslint": "^8.11.0",
"jest": "^27.5.1",
"serverless": "^3.7.5",
"serverless-dotenv-plugin": "^3.12.2",
"serverless-offline": "^8.5.0",
"ts-jest": "^27.1.3",
"tsc": "^2.0.4",
"typescript": "^4.6.2"
}
}