-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "ipfs-ark-stamp",
"description": "📝 Add files to IPFS and stamp its IPFS CID hash permanently on the ARK Blockchain",
"keywords": [
"ipfs",
"ipfs-hash",
"stamp",
"ark",
"ark-blockchain",
"blockchain",
"webapp"
],
"version": "0.1.0",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "./server"
},
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "nodemon --exec ts-node server/index.ts --ext ts"
},
"dependencies": {
"@arkecosystem/client": "^1.1.1",
"@arkecosystem/crypto": "^2.6.30",
"@hapi/boom": "^9.1.0",
"compression": "^1.7.4",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.6",
"helmet": "^3.21.3",
"ipfs-http-client": "^42.0.0",
"nanoid": "^2.1.11",
"orbit-db": "^0.23.1"
},
"devDependencies": {
"@types/dotenv-safe": "^8.1.0",
"@types/express": "^4.17.3",
"@types/hapi__boom": "^9.0.1",
"@types/orbit-db": "https://github.com/orbitdb/orbit-db-types.git",
"typescript": "^3.8.3"
},
"author": "rigwild <[email protected]> (https://rigwild.dev/)",
"license": "MIT"
}