-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
75 lines (75 loc) · 2.48 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
{
"$schema": "http://json.schemastore.org/package",
"name": "@xyo-network/sdk-core-nodejs",
"version": "0.71.6",
"description": "A workspace to aggregated nodejs XYO projects",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"author": "XY Development Team",
"license": "LGPL-3.0",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc -p tsconfig.build.json && yarn lint",
"lint": "NODE_OPTIONS=--max_old_space_size=8192 eslint --ext .js,.ts ./src",
"fix": "NODE_OPTIONS=--max_old_space_size=8192 eslint --ext .js,.ts ./src --fix",
"clean": "rm -r -f ./node_modules && rm -r -f ./build",
"reinstall": "rm -r -f ./node_modules && rm -f ./yarn.lock && rm -f ./yarn-error.log && yarn install && yarn outdated",
"test": "yarn licensecheck && export NODE_ENV=test && yarn jest --no-cache --forceExit --coverage --verbose false --detectOpenHandles",
"start:tcp": "yarn build && node --nolazy -r ts-node/register examples/tcp-server/index.ts",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"repository": {
"type": "git",
"url": "git://github.com/XYOracleNetwork/sdk-core-nodejs.git"
},
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/elliptic": "^6.4.8",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"enquirer": "^2.3.6",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-export-all": "^1.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"eslint-plugin-typescript-sort-keys": "^1.6.0",
"eslint-plugin-workspaces": "^0.6.0",
"jest": "^26.6.3",
"license-checker": "^25.0.1",
"prettier": "^2.2.1",
"shelljs": "^0.8.4",
"snyk": "^1.543.0",
"ts-jest": "^26.5.5",
"ts-node": "9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@xyo-network/sdk-base-nodejs": "^0.7.6",
"bs58": "4.0.1",
"delay": "^5.0.0",
"elliptic": "6.5.4"
},
"prettier": {
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true
},
"files": [
"dist",
"bin"
],
"engineStrict": true,
"engines": {
"node": ">=8.0.0"
},
"snyk": true
}