-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 997 Bytes
/
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
{
"name": "tw-lambda-bot",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:avkos/tw-lambda-bot.git",
"author": "Oleksii Kosynskyi <[email protected]>",
"license": "MIT",
"scripts": {
"copy:package": "cp package.json dist/package.json && cp yarn.lock dist/yarn.lock",
"clean": "rimraf dist",
"prebuild": "yarn clean",
"build": "tsc --build",
"deploy": "cd cdk && yarn deploy",
"postbuild": "yarn copy:package && yarn install --production --modules-folder dist/node_modules",
"test": "jest --config=./test/jest.config.js --runInBand"
},
"dependencies": {
"dynamoose": "^2.8.5",
"node-binance-api": "^0.13.1",
"typescript": "^4.6.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^17.0.34",
"@types/uuid": "^8.3.4",
"aws-sdk": "^2.1147.0",
"jest": "^28.1.0",
"jest-extended": "^2.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.2"
}
}