forked from vulcanize/dxns-registry-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.93 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@wirelineio/registry-client",
"version": "1.1.0-beta.2",
"description": "Wireline Registry JavaScript Client.",
"repository": "https://github.com/wirelineio/registry-client",
"author": "",
"license": "UNLICENSED",
"browser": "dist/umd/index",
"main": "dist/es/index",
"lint-staged": {
"*.js": "eslint --ignore-path .eslintignore"
},
"pre-commit": [
"lint:staged"
],
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"apollo-server": "^2.9.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-import-graphql": "^2.7.0",
"copy-webpack-plugin": "^4.5.2",
"eslint": "^5.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-jest-enzyme": "^7.0.1",
"eslint-config-prettier": "^4.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.11.0",
"get-port": "^5.0.0",
"graphql-request": "^1.8.2",
"graphql-tools": "^4.0.5",
"graphviz": "^0.0.9",
"jest": "^24.5.0",
"lint-staged": "^8.1.0",
"node-yaml": "^4.0.1",
"pre-commit": "^1.2.2",
"semver": "^6.3.0",
"webpack": "^4.17.1",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7",
"webpack-version-file-plugin": "^0.3.3",
"yargs": "^14.2.0"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@graphql-tools/schema": "^6.0.16",
"@wirelineio/wns-schema": "^0.3.1",
"bech32": "^1.1.3",
"bip32": "^2.0.5",
"bip39": "^2.5.0",
"canonical-json": "^0.0.4",
"debug": "^4.1.1",
"graphql": "^15.3.0",
"graphql.js": "^0.6.1",
"hdkey": "^1.1.1",
"ipld-dag-cbor": "^0.17.0",
"is-url": "1.2.4",
"js-sha256": "^0.9.0",
"jsonschema": "^1.2.4",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.set": "^4.3.2",
"ripemd160": "^2.0.2",
"secp256k1": "^3.6.2"
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && npm run build:node && npm run build:web",
"build:node": "NODE_ENV=production babel ./src --out-dir ./dist/es --ignore \"*.test.js\" --copy-files",
"build:web": "NODE_ENV=production webpack",
"lint:staged": "lint-staged",
"start:memory": "BABEL_DISABLE_CACHE=1 WIRE_WNS_CHAIN_ID=memnet DEBUG=test babel-node src/mock/main.js",
"test": "jest --runInBand --no-cache",
"test:memory": "MOCK_SERVER=1 WIRE_WNS_CHAIN_ID=memnet jest --runInBand --no-cache"
},
"publishConfig": {
"access": "public"
},
"jest": {
"testPathIgnorePatterns": [
"dist/*"
],
"maxConcurrency": 1
}
}