-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.7 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
{
"name": "sync-data",
"version": "1.0.0",
"description": "",
"scripts": {
"lint": "eslint --color --fix --ext .ts .",
"build": "webpack --color",
"package": "sam package --template-file template.yaml --s3-bucket com.zerotoheroes.artifact --output-template-file template.packaged.yaml",
"deploy": "sam deploy --template-file template.packaged.yaml --stack-name SyncDataStack --capabilities CAPABILITY_IAM",
"full-deploy": "npm run build && npm run package && npm run deploy"
},
"repository": {},
"author": "",
"license": "MIT",
"private": true,
"dependencies": {
"@firestone-hs/aws-lambda-utils": "^1.0.7",
"@firestone-hs/hs-replay-xml-parser": "^0.0.149",
"@firestone-hs/reference-data": "^2.0.84",
"@firestone-hs/replay-metadata": "^0.0.74",
"aws-sdk": "^2.1040.0",
"axios": "^0.21.4",
"cross-fetch": "^3.1.5",
"elementtree": "^0.1.7",
"immutable": "3.8.2",
"jszip": "^3.10.1",
"mysql": "^2.18.1",
"node-fetch": "^2.6.7",
"sax": "1.2.4",
"serverless-mysql": "^1.5.4",
"sqlstring": "^2.3.2",
"tslib": "^1.9.0"
},
"devDependencies": {
"@types/aws-lambda": "8.10.31",
"@types/jsonwebtoken": "^9.0.2",
"@types/jszip": "^3.1.7",
"@types/mysql": "^2.15.7",
"@types/node": "^18.16.0",
"@types/pako": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^4.0.1",
"prettier": "^2.8.8",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2",
"yaml-cfn": "^0.2.2"
},
"overrides": {
"@firestone-hs/reference-data": "^2.0.84"
}
}