-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
81 lines (81 loc) · 2.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@castframework/oracle-clients",
"version": "0.8.3",
"description": "CAST oracle clients",
"author": "Société Générale Forge",
"license": "See license in LICENSE",
"main": "dist/index.js",
"private": true,
"scripts": {
"build": "npm run graphql-codegen && npm run build:app && npm run build:tests",
"build:app": "npm run clean && $(npm bin)/tsc -b",
"build:tests": "$(npm bin)/tsc --noEmit -p tsconfig.lint.json",
"clean": "$(npm bin)/rimraf dist tsconfig.tsbuildinfo",
"publish": "npm run build",
"sonar": "$(npm bin)/sonar-scanner",
"stats": "nyc npm run test",
"graphql-codegen": "graphql-codegen --config codegen.yml",
"lint": "$(npm bin)/eslint --ignore-path .gitignore --ext ts .",
"lint:fix": "$(npm bin)/eslint --fix --ignore-path .gitignore --ext ts .",
"pre-commit": "lint-staged --verbose",
"test": "npm run test:unit",
"test:unit": "$(npm bin)/ts-mocha tests/**/*.spec.ts"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --ignore-path .gitignore --quiet"
},
"dependencies": {
"@apollo/client": "^3.5.6",
"@castframework/chain-auth": "^0.8.3",
"@castframework/models": "^0.8.3",
"@nestjs/common": "^8.2.3",
"@nestjs/graphql": "9.1.2",
"@types/uuid": "^8.3.3",
"apollo-link-scalars": "^3.0.0",
"apollo-utilities": "1.3.4",
"convict": "^6.2.1",
"delay": "^5.0.0",
"ethereumjs-util": "^7.1.3",
"graphql": "^15.8.0",
"isomorphic-fetch": "3.0.0",
"log4js": "^6.3.0",
"rxjs": "7.2.0",
"subscriptions-transport-ws": "0.11.0",
"ts-convict": "^1.1.0",
"typescript": "^4.5.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.5.0",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/typescript": "^2.4.3",
"@graphql-codegen/typescript-document-nodes": "^2.2.3",
"@graphql-codegen/typescript-operations": "^2.2.4",
"@types/chai": "^4.3.0",
"@types/convict": "^6.1.1",
"@types/node": "^16.11.12",
"@types/ws": "^6.0.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-import-helpers": "^1.2.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "7.0.4",
"lint-staged": "^12.1.2",
"mocha": "^8.4.0",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.5.1",
"mocha-sonarqube-reporter": "^1.0.2",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"sinon": "^12.0.1",
"sonarqube-scanner": "^2.8.1",
"ts-graphql-plugin": "^2.1.5",
"ts-mocha": "^8.0.0"
}
}