-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "perp-maker",
"version": "0.1.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=16",
"npm": ">=7 <=7.24.1"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc -b .",
"sls:deploy": "sls deploy",
"sls:invoke:local": "sls invoke local --function main"
},
"dependencies": {
"@perp/common": "0.1.14",
"ethers": "5.7.2"
},
"devDependencies": {
"@typechain/ethers-v5": "7.0.1",
"@types/big.js": "6.1.1",
"@types/lodash": "4.14.171",
"@types/node": "16.4.7",
"@types/node-fetch": "2.5.12",
"import-sort-style-module": "6.0.0",
"prettier": "2.3.2",
"prettier-plugin-import-sort": "0.0.7",
"serialize-error": "8.1.0",
"serverless": "3.25.1",
"serverless-plugin-log-retention": "2.0.0",
"serverless-webpack": "5.11.0",
"ts-node": "10.1.0",
"typechain": "5.1.2",
"typescript": "4.3.5"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}