-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.43 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
{
"name": "totem-faucet-server",
"version": "1.0.0",
"description": "Totem Faucet",
"main": "index.js",
"scripts": {
"faucet": "nodemon --watch ./src/ --verbose --exec ./node_modules/.bin/babel-node ./src/index.js --ext js --presets env"
},
"babel": {
"plugins": [
"babel-plugin-transform-class-properties",
"babel-plugin-transform-object-rest-spread"
],
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"keywords": [
"totem",
"faucet",
"polkadot",
"substrate"
],
"author": "Chris DCosta",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.6.1",
"nodemon": "^1.18.3",
"webpack": "^4.29.0",
"webpack-cli": "^3.1.1"
},
"dependencies": {
"@babel/preset-env": "^7.22.5",
"@polkadot/api": "^0.100.1",
"@polkadot/keyring": "^1.8.1",
"@polkadot/wasm-crypto": "^0.14.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"bip39": "^2.5.0",
"blakejs": "^1.1.0",
"dotenv": "^8.1.0",
"nano": "^9.0.3",
"node-localstorage": "^1.3.1",
"rxjs": "^7.5.4",
"socket.io": "^3.0.4",
"tweetnacl": "^1.0.1",
"tweetnacl-util": "^0.15.0",
"uuid": "^3.4.0",
"web3-utils": "^1.3.0"
}
}