forked from paritytech/polkadot-testnet-faucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.01 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
{
"name": "faucet",
"version": "1.1.2",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"backend": "yarn build && node ./build/src/server/index.js",
"dev:backend": "nodemon -- ./src/server/index.ts",
"bot": "yarn build && node ./build/src/bot/index.js",
"dev:bot": "nodemon -- ./src/bot/index.ts",
"typing": "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": "echo \"Error: no test specified\" && exit 1"
},
"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": "^7.6.1",
"@polkadot/keyring": "^8.3.3",
"@polkadot/util": "^8.3.3",
"@polkadot/util-crypto": "^8.3.3",
"@polkadot/wasm-crypto": "^4.5.1",
"@polkadot/x-randomvalues": "^8.3.3",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"bs58": "^4.0.1",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"log4js": "^6.3.0",
"matrix-js-sdk": "^12.4.1",
"nedb": "^1.8.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/matrix-js-sdk": "^11.0.1",
"@types/nedb": "^1.8.11",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"lint-staged": "^11.2.0",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"simple-git-hooks": "^2.6.1",
"ts-node": "^10.4.0",
"typescript": "^4.1.3"
}
}