-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "rv2020",
"version": "0.4.0",
"description": "RChain Voting dApp (Alpha)",
"main": "./src/web/ballot.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rchain-community/rv2020.git"
},
"keywords": [
"rchain",
"governance",
"dApp",
"blockchain",
"collaboration"
],
"author": "Dan Connolly",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rchain-community/rv2020/issues"
},
"homepage": "https://github.com/rchain-community/rv2020#readme",
"devDependencies": {
"css-loader": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.1",
"style-loader": "^1.2.1",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"realclean": "rm -rf dist build node_modules web_modules",
"start": "webpack-dev-server --open",
"build": "webpack",
"lint-fix": "npm run lint --fix",
"lint-check": "npm run lint",
"lint-xx": "npm run lint:types && npm run lint:eslint",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint",
"lint:types": "tsc -p jsconfig.json"
},
"dependencies": {
"@tgrospic/rnode-http-js": "^0.1.7",
"blakejs": "^1.1.0",
"bs58": "^4.0.1",
"elliptic": "^6.5.3",
"ethereumjs-util": "^6.2.1",
"google-protobuf": "^3.14.0",
"htm": "^3.0.4",
"html-webpack-plugin": "^4.5.1",
"jazzicon": "^1.5.0",
"js-sha3": "^0.8.0",
"mithril": "^2.0.4",
"ramda": "^0.27.1",
"shepherd.js": "^8.1.0"
}
}