-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "casper-ds",
"version": "0.0.7",
"description": "",
"main": "build/index.js",
"bin": "build/index.js",
"scripts": {
"dev": "ts-node ./src/index.ts",
"prod": "./dist/casper-ds",
"methods": "ts-node ./src/methods.ts",
"undelegations": "ts-node ./src/undelegations.ts",
"start": "node ./build/index.js",
"build": "tsc",
"pkg": "npm run build && pkg .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"casper-client-sdk": "^1.4.2",
"ethers": "^5.3.1",
"json-2-csv": "^3.14.1",
"moment": "^2.29.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.4",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/node-fetch": "^2.5.10",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"node-fetch": "^2.6.1",
"pkg": "^5.3.0"
},
"pkg": {
"scripts": "build/**/*.js",
"targets": [
"node14-linux-x64"
],
"outputPath": "dist"
}
}