-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "bloom-vault",
"version": "0.0.1",
"description": "e2e encrypted provider agnositc data storage",
"main": "build/index.js",
"private": true,
"engines": {
"node": "^14"
},
"scripts": {
"migrate": "ts-node migrations.ts",
"build": "tsc",
"watch": "tsc --watch",
"start": "node build/index.js",
"debug": "nodemon --watch ./build --inspect=0.0.0.0:9298 --nolazy ./build/index.js",
"test": "mocha -r ts-node/register test/*.ts",
"docker-debug": "npm run build && docker-compose -f docker-debug.yml up --build",
"clean": "rm -r build/*",
"publish": "./bin/publish.sh"
},
"license": "UNLICENSED",
"dependencies": {
"@decentralized-identity/did-common-typescript": "^0.1.19",
"body-parser": "^1.19.0",
"ethereumjs-util": "^7.0.9",
"ethereumjs-wallet": "^1.0.1",
"express": "^4.17.1",
"helmet": "^4.4.1",
"morgan": "^1.10.0",
"pg": "^8.5.1"
},
"devDependencies": {
"@types/aes-js": "^3.1.0",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.1",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.35",
"@types/node-fetch": "^2.5.8",
"@types/pg": "^7.14.11",
"@types/safe-regex": "^1.1.2",
"@types/uuid": "^8.3.0",
"aes-js": "^3.1.2",
"dotenv": "^8.2.0",
"mocha": "^8.3.2",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"prettier": "^1.16.4",
"safe-regex": "^2.1.1",
"ts-node": "^9.1.1",
"tslint": "^5.12.1",
"typescript": "^4.2.3",
"uuid": "^8.3.2"
}
}