-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.3 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.3 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
{
"name": "@roq/nodejs",
"version": "1.0.20",
"description": "Roq NodeJs SDK package",
"main": "dist/src/index.js",
"files": [
"dist"
],
"scripts": {
"start": "npx ts-node src/test.ts",
"prebuild": "rimraf dist",
"build": "npx tsc --project tsconfig.json && npx tsc-alias -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1",
"graphql-codegen": "gql-gen --config codegen.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roqtech/roq-core.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/roqtech/roq-core/issues"
},
"homepage": "https://github.com/roqtech/roq-core#readme",
"volta": {
"node": "16.15.1",
"npm": "7.24.2"
},
"dependencies": {
"form-data": "^4.0.0",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"graphql-tag": "^2.12.6",
"jose": "^5.1.1",
"jsonwebtoken": "^9.0.0",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.12",
"@graphql-codegen/typescript-graphql-request": "^4.5.8",
"@graphql-codegen/typescript-operations": "^2.5.6",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
}
}