-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "dvote-js",
"version": "1.16.2",
"description": "JavaScript/TypeScript library to interact with Vocdoni voting processes",
"main": "dist/index",
"types": "dist/index",
"repository": "https://github.com/vocdoni/dvote-js.git",
"author": "Vocdoni <[email protected]>",
"license": "GPL-3.0-or-later",
"private": false,
"scripts": {
"prepublishOnly": "npm run build",
"clean": "rimraf dist",
"prebuild": "git submodule init && git submodule update",
"build": "npm install && npm run build --ws && tsc -b",
"watch": "tsc -w -p .",
"test": "npm run build && npm test --ws"
},
"workspaces": {
"packages": [
"packages/common",
"packages/contract-wrappers",
"packages/encryption",
"packages/signing",
"packages/hashing",
"packages/data-models",
"packages/client",
"packages/census",
"packages/voting",
"packages/wallets"
],
"nohoist": []
},
"dependencies": {
"@vocdoni/census": "^1.16.0",
"@vocdoni/client": "^1.16.7",
"@vocdoni/common": "^1.15.3",
"@vocdoni/contract-wrappers": "^1.15.0",
"@vocdoni/data-models": "^1.15.3",
"@vocdoni/encryption": "^1.14.1",
"@vocdoni/hashing": "^1.15.0",
"@vocdoni/signing": "^1.16.2",
"@vocdoni/voting": "^1.16.1",
"@vocdoni/wallets": "^1.16.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.11",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"mocha": "^9.1.1",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
}
}