-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.88 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "fund-price-monitor-backend",
"version": "0.72.0",
"bin": {
"fund-price-monitor-backend": "bin/fund-price-monitor-backend.ts"
},
"engines": {
"node": ">=16.0.0",
"npm": "please-use-yarn",
"yarn": ">= 1.22.0"
},
"watch": {
"build": {
"patterns": [
"src",
"construct",
"scripts"
],
"extensions": "ts",
"ignore": "src/services/cron/handlers/__*.ts",
"quiet": false
},
"build-dev": {
"patterns": [
"src",
"construct",
"scripts"
],
"extensions": "ts",
"quiet": false
}
},
"scripts": {
"analyze": "webpack-bundle-analyzer",
"build": "yarn run build-scrapers && tsc && webpack && yarn run rm-scrapers-cache",
"build-dev": "tsc && webpack",
"build-scrapers": "ts-node scripts/buildScrapers",
"cdk": "cdk",
"clear-build-cache": "rm -rf ./build && rm -rf ./bundles",
"rm-scrapers-cache": "ts-node scripts/removeScrapersCache",
"deploy": "cdk deploy FundPriceMonitorBackendStack --require-approval never",
"link": "yarn link \"@michchan/fund-price-monitor-lib\"",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint-fix": "yarn run lint -- --fix",
"invoke": "scripts/invoke.sh",
"dev-api": "concurrently -n watch,sam \"yarn watch\" \"yarn start-api\"",
"start-api": "scripts/start-api.sh",
"template": "scripts/template.sh",
"test": "jest",
"tsc-watch": "tsc --watch --noemit",
"watch": "yarn run clear-build-cache && npm-watch build-dev",
"watch-all": "yarn run clear-build-cache && npm-watch build",
"release": "standard-version --ignore-path .gitignore --commit-hook false"
},
"devDependencies": {
"@michchan/eslint-config": "1.9.0",
"@michchan/webpack-config-aws-cdk": "0.5.4",
"@types/aws-lambda": "^8.10.70",
"@types/jest": "^26.0.4",
"@types/lodash": "^4.14.167",
"@types/node": "14.14.20",
"@types/puppeteer": "5.4.5",
"aws-cdk": "2.17.0",
"aws-cdk-lib": "2.17.0",
"aws-lambda-mock-context": "^3.2.1",
"aws-sdk": "2.824.0",
"concurrently": "^7.6.0",
"constructs": "10.0.91",
"eslint": "^7.11.0",
"file-loader": "^6.0.0",
"jest": "^26.6.1",
"npm-watch": "0.7.0",
"standard-version": "^9.3.2",
"ts-jest": "^26.4.2",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.6.2",
"webpack": "^5.12.2",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.3.1"
},
"dependencies": {
"@michchan/fund-price-monitor-lib": "0.13.1",
"@octokit/core": "^3.4.0",
"axios": "^0.21.1",
"chrome-aws-lambda": "10.0.0",
"dayjs": "^1.10.5",
"dotenv": "^8.2.0",
"http-status-codes": "^2.1.4",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"puppeteer": "10.0.0",
"puppeteer-core": "10.0.0",
"simply-utils": "0.69.0",
"source-map-support": "^0.5.19"
}
}