-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
executable file
·63 lines (63 loc) · 1.67 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
{
"name": "liquid-democracy-rchain",
"version": "0.0.1",
"description": "",
"main": "Jakefile.js",
"scripts": {
"lint-fix": "eslint --fix '**/*.{js,jsx}'",
"lint-check": "eslint '**/*.{js,jsx}'",
"lint:types": "tsc -p jsconfig.json",
"start": "webpack-dev-server --open",
"build": "webpack",
"build:deploy": "npm run build; cp -pr src/actions/ dist/"
},
"contributors": [
"Jim Whitescarver",
"Dan Connolly",
"Bill Keuntje"
],
"license": "Apache-2.0",
"devDependencies": {
"@agoric/eslint-config": "^0.3.3",
"@agoric/eslint-plugin": "^0.2.3",
"@types/babel__core": "^7.1.14",
"@types/mithril": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"css-loader": "^5.2.6",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^32.3.0",
"eslint-plugin-prettier": "^3.1.4",
"html-webpack-plugin": "^4.5.0",
"prettier": "^2.1.1",
"style-loader": "^3.0.0",
"typescript": "^4.2.4",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"eslintConfig": {
"extends": [
"@agoric"
]
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"chokidar": "^3.5.2",
"esm": "^3.2.25",
"file-system": "^2.2.2",
"fs": "0.0.1-security",
"htm": "^3.0.4",
"jake": "^10.8.2",
"mithril": "^2.0.4",
"prismjs": "^1.24.1",
"rchain-api": "github:rchain-community/rchain-api#http-client"
}
}