This repository was archived by the owner on Aug 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.17 KB
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
{
"name": "@ethersphere/onboarding-faucet",
"version": "0.0.0",
"description": "",
"keywords": [
"swarm",
"faucet",
"onboarding"
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rimraf ./build && tsc",
"start": "nodemon --config nodemon.json src/index.ts",
"start:debug": "nodemon --config nodemon.json --inspect-brk src/index.ts",
"lint": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\" && prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:check": "eslint \"src/**/*.ts\" \"test/**/*.ts\" && prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"depcheck": "depcheck .",
"check:types": "tsc --project tsconfig.test.json",
"test": "jest --verbose --detectOpenHandles",
"start:ganache": "ganache --wallet.deterministic --chain.networkId 4020 -h 0.0.0.0 -p 9545",
"stop:ganache": "kill -9 $(lsof -t -i:9545)"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@jest/types": "^28.1.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.22",
"@types/request-stats": "^3.0.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.25.0",
"depcheck": "^1.4.3",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"ganache": "^7.2.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"supertest": "^6.2.3",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.6.0",
"@ethersproject/address": "^5.6.0",
"@ethersproject/contracts": "^5.6.1",
"@ethersproject/providers": "^5.6.6",
"@ethersproject/wallet": "^5.6.0",
"express": "^4.18.1",
"prom-client": "^14.0.1",
"request-stats": "^3.0.0",
"tiny-typed-emitter": "^2.1.0",
"winston": "^3.7.2"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
}
}