-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"scripts": {
"compile": "tsc",
"compile-lambda": "rm -rf out && esbuild ./lib/lambda-functions/lambda_test.ts ./lib/lambda-functions/notification_dispatcher.ts --entry-names=[dir]/[name]/index --bundle --minify --sourcemap --platform=node --target=node16.14 --outdir=out --external:pg-native",
"gearUpdater": "ts-node ./lib/web-scraper.ts",
"dev": "next dev",
"build": "next build",
"start": "next start",
"cypress": "cypress open"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"aws-sdk": "^2.1318.0",
"base64url": "^3.0.1",
"fuse.js": "^6.6.2",
"next": "^14.0.4",
"node-fetch": "^2.6.7",
"pg": "^8.8.0",
"react-slider": "^2.0.4",
"react-toastify": "^9.1.1",
"request-promise-native": "^0.0.0",
"sharp": "^0.33.0",
"uuid": "^9.0.0",
"web-push": "^3.5.0"
},
"devDependencies": {
"@types/ansi-colors": "^3.2.2",
"@types/aws-lambda": "^8.10.110",
"@types/cli-progress": "^3.11.0",
"@types/gtag.js": "^0.0.12",
"@types/node-fetch": "^2.6.2",
"@types/pg": "^8.6.5",
"@types/react": "18.0.21",
"@types/react-slider": "^1.3.1",
"@types/uuid": "^8.3.4",
"@types/web-push": "^3.3.2",
"ansi-colors": "^4.1.3",
"cheerio": "^1.0.0-rc.12",
"cli-progress": "^3.11.2",
"cypress": "^13.6.1",
"esbuild": "^0.17.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}