-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.99 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
{
"name": "totem-message-server",
"version": "1.20.0000",
"description": "Totem Internal Message Server",
"main": "index.js",
"scripts": {
"dev": "npm run start",
"prod": "npm run server",
"server": "nodemon --watch src/ --ignore src/data --ignore src/utils --verbose --exec babel-node --ignore */src/utils/reactjs*/test ./src/index.js",
"start": "nodemon --watch src/ --ignore src/data --verbose --exec babel-node --ignore */src/utils/reactjs*/test ./src/index.js",
"tools-company": "babel-node ./tools/company/importCompanies.js",
"tools-encrypt": "babel-node ./tools/encrypt/index.js",
"tools-export": "babel-node ./tools/export-db/index.js",
"tools-script": "babel-node ./tools/scripts/index.js"
},
"keywords": [
"totem"
],
"contributors": [
{
"name": "Chris DCosta",
"email": "chris.dcosta@totemaccounting.com"
},
{
"name": "Toufiqur R. Chowdhury",
"email": "htr.letun@gmail.com"
}
],
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/node": "^7.22.6",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/runtime": "^7.22.6",
"express": "^4.17.1",
"JSONStream": "^1.3.5",
"node-localstorage": "^2.2.1",
"nodemon": "^3.0.1"
},
"dependencies": {
"@polkadot/api": "^0.100.1",
"@polkadot/keyring": "^1.8.1",
"@polkadot/util": "^3.2.1",
"@polkadot/util-crypto": "^3.2.1",
"@polkadot/wasm-crypto": "^0.14.1",
"abort-controller": "^3.0.0",
"babel-loader": "^9.1.3",
"bip39": "^3.0.2",
"blakejs": "^1.1.0",
"bs58": "^4.0.1",
"json2csv": "^5.0.7",
"nano": "^9.0.3",
"pbkdf2": "^3.0.17",
"request": "^2.88.2",
"socket.io": "^3.0.4",
"socket.io-client": "^3.0.4",
"stripe": "^14.12.0",
"tweetnacl": "^1.0.3",
"twitter-lite": "^1.1.0",
"uuid": "^3.3.3",
"uws": "^10.148.1",
"web3-utils": "^1.3.4",
"xxhashjs": "^0.2.2"
}
}