forked from Consensys/quorum-dev-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.45 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
{
"name": "quorum-dev-quickstart",
"version": "0.0.12",
"description": "A utility that lets developers try out the new suite of Quorum tools from ConsenSys!",
"main": "build/index.js",
"repository": "[email protected]:ConsenSys/quorum-dev-quickstart.git",
"author": "Ben Burns <[email protected]>",
"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.1.3",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.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": "^4.2.5",
"lint-staged": "^10.2.11",
"typescript": "^3.9.7"
},
"dependencies": {
"chalk": "^4.1.0",
"cli-spinners": "^2.4.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"got": "^11.5.1",
"keycloak-connect": "^11.0.0",
"log-update": "^4.0.0",
"nunjucks": "^3.2.2",
"open": "^7.1.0",
"tmp": "^0.2.1"
}
}