forked from ERrijul8/redstone-cache-layer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.77 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": "redstone-cache-layer",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"run-ts": "ts-node",
"start": "ts-node -e 'require(\"./index\").runLocalServer()'",
"dev": "MODE=LOCAL node -e 'require(\"./index\").runLocalServer()'",
"test": "jest --coverage",
"test:ci": "NODE_ENV=test jest --ci --reporters='default' --reporters='./helpers/GithubActionsReporter'",
"build": "tsc",
"esbuild-build": "esbuild index.ts --bundle --minify --sourcemap --platform=node --target=es2020 --outfile=dist/index.js"
},
"dependencies": {
"@amplitude/node": "^1.9.1",
"@redstone-finance/sdk": "^0.3.5",
"@redstone-finance/utils": "^0.3.5",
"@vendia/serverless-express": "^4.3.9",
"arweave": "^1.10.14",
"aws-sdk": "^2.931.0",
"aws-serverless-express": "^3.4.0",
"axios": "^1.3.4",
"body-parser": "^1.19.0",
"consola": "^2.15.3",
"cors": "^2.8.5",
"csv-file-to-json": "^4.0.5",
"deep-sort-object": "^1.0.2",
"errorhandler": "^1.5.1",
"express": "^4.18.1",
"express-async-handler": "^1.1.4",
"lodash": "^4.17.21",
"mongodb-memory-server": "^7.5.1",
"mongoose": "^6.3.4"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.101",
"@types/aws-serverless-express": "^3.3.5",
"@types/cors": "^2.8.12",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.182",
"@types/node": "^18.14.6",
"@types/supertest": "^2.0.12",
"esbuild": "^0.14.48",
"jest": "^28.0.1",
"mongodb": "^3.6.6",
"sleep-promise": "^9.1.0",
"supertest": "^6.1.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"typescript": "^5.2.2",
"uuid-random": "^1.3.2"
}
}