-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.75 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
{
"name": "@firestone-hs/assign-constructed-archetype",
"version": "0.0.3",
"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 AssignArchetypeStack --capabilities CAPABILITY_IAM",
"full-deploy": "npm run build && npm run package && npm run deploy",
"publish-version": "rm -rf dist && tsc && rm -rf dist/node_modules && npm publish --access public"
},
"repository": {},
"author": "",
"license": "MIT",
"private": false,
"main": "dist/model.js",
"types": "dist/model.d.ts",
"files": [
"dist/**/*"
],
"dependencies": {
"@firestone-hs/aws-lambda-utils": "^0.0.60",
"@firestone-hs/deckstrings": "^2.2.7",
"@firestone-hs/hs-replay-xml-parser": "^0.0.136",
"@firestone-hs/reference-data": "^2.0.35",
"@firestone-hs/replay-metadata": "^0.0.60",
"aws-sdk": "^2.1040.0",
"elementtree": "^0.1.7",
"mysql": "^2.18.1",
"node-fetch": "^2.6.6",
"serverless-mysql": "^1.5.4",
"sqlstring": "^2.3.2",
"tslib": "^1.9.0"
},
"devDependencies": {
"@types/aws-lambda": "8.10.31",
"@types/mysql": "^2.15.7",
"@types/node": "^18.16.0",
"@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": {
"node-fetch": "^2.6.6"
}
}