forked from paritytech/polkadot-testnet-faucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.09 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
{
"name": "faucet",
"version": "1.1.2",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start:backend": "node ./build/src/server/index.js",
"start:bot": "node ./build/src/bot/index.js",
"dev:backend": "nodemon -- ./src/server/index.ts",
"dev:bot": "nodemon -- ./src/bot/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src/ --ext .js,.ts",
"lint:fix": "eslint ./src/ --ext .js,.ts --fix",
"format": "prettier ./src --check",
"format:fix": "prettier ./src --write",
"test": "jest"
},
"author": "",
"license": "ISC",
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"dependencies": {
"@polkadot/api": "^8.1.1",
"@polkadot/keyring": "^9.0.1",
"@polkadot/util": "^9.0.1",
"@polkadot/util-crypto": "^9.0.1",
"@polkadot/wasm-crypto": "^6.0.1",
"@polkadot/x-randomvalues": "^9.0.1",
"axios": "^0.26.1",
"bigfloat.js": "^3.0.1",
"body-parser": "^1.20.0",
"bs58": "^5.0.0",
"confmgr": "^1.0.8",
"crypto": "^1.0.1",
"dotenv": "^16.0.0",
"express": "4.17.3",
"log4js": "6.4.5",
"matrix-js-sdk": "^17.0.0",
"nedb": "^1.8.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/matrix-js-sdk": "^11.0.1",
"@types/nedb": "^1.8.11",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.8",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"simple-git-hooks": "^2.7.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}