-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "sponsorship-provider",
"version": "1.0.0",
"description": "Tool that provides sponsorship to EOS transactions",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"build-schema": "mkdirp schemas && typescript-json-schema tsconfig.json Filter -o ./schemas/filter.json --noExtraProps",
"build": "tsc && npm run build-schema",
"start": "node dist/single.js",
"cluster": "node dist/cluster.js",
"debug": "ts-node-dev src/single.ts",
"example": "ts-node-dev example/example.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DaoCasino/sponsorship-provider.git"
},
"author": "mixbytes",
"license": "ISC",
"bugs": {
"url": "https://github.com/DaoCasino/sponsorship-provider/issues"
},
"homepage": "https://github.com/DaoCasino/sponsorship-provider#readme",
"dependencies": {
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"@types/source-map-support": "^0.5.1",
"@types/supertest": "^2.0.8",
"ajv": "^6.12.2",
"eosjs": "^20.0.3",
"eosjs-ecc": "^4.0.7",
"express": "^4.17.1",
"express-winston": "^4.0.3",
"jest": "^25.1.0",
"node-eosjs-signature-provider": "^3.0.0",
"node-fetch": "^2.6.0",
"source-map-support": "^0.5.16",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3",
"typescript-json-schema": "^0.42.0",
"winston": "^3.2.1"
},
"devDependencies": {
"ts-node": "^8.6.2",
"ts-node-dev": "^1.0.0-pre.44"
}
}