-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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
{
"name": "@roll-network/example-node-api-client",
"description": "Example of using Client Auth SDK to connect to Roll API in Node",
"version": "0.0.0",
"private": true,
"type": "module",
"dependencies": {
"@roll-network/api": "workspace:*",
"@roll-network/api-client": "workspace:*",
"@roll-network/auth-sdk": "workspace:*",
"@roll-network/logger": "workspace:*",
"axios": "^1.3.4",
"console-table-printer": "^2.11.1",
"dotenv": "^16.0.3",
"inquirer": "^9.1.5",
"inquirer-search-list": "^1.2.6",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"scripts": {
"start": "ts-node ./index.ts",
"get-token-list": "node get-token-list.js",
"test": "echo \"Tests are disabled for example repos\" && exit 0",
"build": "echo \"Build is disabled for example repos\" && exit 0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/roll-network/tryrolljs.git"
},
"engines": {
"npm": "~8.3.1",
"node": "^16"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/inquirer": "^9.0.3"
}
}