-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.88 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.88 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
51
52
{
"name": "@energyweb/exchange-irec-react-query-client",
"version": "1.1.1",
"description": "React Query Client library interacting with the I-REC Exchange",
"homepage": "https://github.com/energywebfoundation/origin/tree/master/packages/api-clients/react-query/exchange-irec#readme",
"author": "EnergyWeb DevHub GmbH; Artur Sudnik Hrynkiewicz, artur.hrynkiewicz@energyweb.org",
"license": "MIT",
"main": "dist/js/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/energywebfoundation/origin.git"
},
"bugs": {
"url": "https://github.com/energywebfoundation/origin/issues"
},
"scripts": {
"build": "yarn clean && yarn build:ts",
"build:ts": "yarn build:client 1>/dev/null 2>/dev/null && tsc --project tsconfig.json",
"build:client": "yarn client:generate:schema && yarn client:generate",
"clean": "rm -rf dist dist-shakeable && yarn client:clean",
"client:generate": "rm -rf src/client && orval && barrelsby -d src/client",
"client:generate:schema": "ts-node src/generateSchema.ts",
"client:clean": "rm -rf src/client src/schema.yaml"
},
"dependencies": {
"axios": "0.30.2",
"react-query": "3.34.0"
},
"devDependencies": {
"@energyweb/exchange": "1.13.1",
"@energyweb/exchange-irec": "1.2.1",
"@nestjs/swagger": "5.1.4",
"@nestjs/testing": "8.1.1",
"@nestjs/typeorm": "8.0.2",
"@types/mocha": "9.0.0",
"@types/node": "14.18.10",
"barrelsby": "2.3.2",
"json-to-pretty-yaml": "1.2.2",
"mocha": "9.1.3",
"orval": "6.5.1",
"prettier": "2.5.1",
"ts-node": "9.1.1",
"typescript": "4.5.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist"
]
}