-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "quorum-dev-quickstart",
"version": "0.2.4",
"description": "A utility that lets developers try out the new suite of Quorum tools from ConsenSys!",
"main": "build/index.js",
"repository": "git@github.com:ConsenSys/quorum-dev-quickstart.git",
"contributors": [
"Joshua Fernandes <3722503+joshuafernandes@users.noreply.github.com>",
"Eric Lin <38420555+Ezzahhh@users.noreply.github.com>"
],
"license": "Apache-2.0",
"private": false,
"bin": "./index.js",
"scripts": {
"build": "tsc",
"lint": "eslint './src/**'",
"lintAndFix": "eslint --fix './src/**'",
"prepare": "tsc && eslint --fix './src/**'",
"start": "node build/index.js"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/express-session": "^1.17.0",
"@types/got": "^9.6.11",
"@types/node": "^14.0.24",
"@types/nunjucks": "^3.2.0",
"@types/tmp": "^0.2.0",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.0.3",
"eslint-plugin-prefer-arrow": "^1.2.1",
"husky": "^7.0.2",
"lint-staged": "^13.2.1",
"typescript": "^3.9.7"
},
"dependencies": {
"chalk": "^4.1.0",
"cli-spinners": "^2.6.1",
"express": "^4.17.1",
"express-session": "^1.17.2",
"got": "^11.8.2",
"isbinaryfile": "^4.0.8",
"log-update": "^4.0.0",
"nunjucks": "^3.2.3",
"open": "^8.3.0",
"tmp": "^0.2.1",
"yargs": "^17.2.1"
}
}