-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.44 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
97
98
99
100
101
102
103
104
{
"name": "@arianee/spkz-sdk",
"version": "1.6.1",
"description": "Spkz-sdk for Arianee",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"start": "node dist/index.js",
"test:jest": "start-server-and-test 'npm run start:express' http://localhost:3000/ping 'jest --coverage --runInBand --bail --forceExit'",
"start:express:w": "spkzEnv=test nodemon dist/index.express.js",
"start:express": "spkzEnv='test' node dist/index.express.js",
"start:w": "nodemon dist/index.js",
"build": "tsc",
"build:w": "tsc --watch",
"test": "gitool -cl=1 && npm run lint && npm run build && npm run test:jest",
"test:w": "start-server-and-test 'npm run start:express' http://localhost:3000/ping 'jest --coverage --watch'",
"lint": "./node_modules/.bin/eslint -c .eslintrc.json 'src/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"changelog": "gitool -po=./CHANGELOG.md --pn='Spkz SDK'",
"release": "npm run release:minor",
"release:minor": "npm version minor --no-git-tag-version",
"release:patch": "npm version patch --no-git-tag-version",
"release:major": "npm version major --no-git-tag-version",
"serve": "webpack serve --open"
},
"browserslist": [
"since 2017-06"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Arianee/spkz-sdk.git"
},
"author": "Arianee.org",
"license": "ISC",
"bugs": {
"url": "https://github.com/Arianee/spkz-sdk/issues"
},
"homepage": "https://github.com/Arianee/spkz-sdk#readme",
"devDependencies": {
"@arianee/gitool": "^1.24.0",
"@types/jest": "^24.0.17",
"@types/node": "^12.7.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"@walletconnect/types": "^1.7.7",
"assert": "^2.0.0",
"cors": "^2.8.5",
"crypto-browserify": "^3.12.0",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"html-webpack-plugin": "^5.3.2",
"https-browserify": "^1.0.0",
"jest": "^24.8.0",
"jest-localstorage-mock": "^2.4.17",
"nodemon": "^1.19.1",
"os-browserify": "^0.3.0",
"parcel": "^2.0.0-rc.0",
"process": "^0.11.10",
"rxjs": "^7.4.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-jest": "^24.0.2",
"ts-loader": "^9.2.6",
"typescript": "^3.9.10",
"webpack": "^5.55.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0"
},
"dependencies": {
"hash.js": "^1.1.7",
"@arianee/gas-station": "^0.0.9",
"@arianee/required": "0.9.0",
"@pqt/abbreviate": "^1.0.2",
"@walletconnect/client": "^1.5.1",
"@walletconnect/ethereum-provider": "^2.8.6",
"@walletconnect/modal": "^2.5.9",
"@walletconnect/web3-provider": "^1.8.0",
"axios": "^0.21.4",
"body-parser": "^1.19.0",
"ethers": "^5.7.1",
"eventemitter3": "^4.0.4",
"express": "^4.17.1",
"jayson": "^3.6.4",
"js-base64": "^3.7.1",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"object-hash": "^2.2.0",
"promise-retry": "^2.0.1",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.2.0",
"socket.io-client": "^4.2.0",
"start-server-and-test": "^1.14.0",
"tsyringe": "^4.6.0",
"web3": "^1.5.2"
},
"private": false
}