-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "tari-explorer",
"version": "0.0.2",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon --exec node --trace-warnings ./bin/www",
"fmt": "prettier --end-of-line auto -w **/*.{js,hbs}",
"check-fmt": "prettier --end-of-line auto -c .",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"watch": "nodemon --ext *"
},
"dependencies": {
"@grpc/grpc-js": "^1.9.1",
"@tariproject/base-node-grpc-client": "0.0.1",
"asciichart": "^1.5.25",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"express": "~4.16.1",
"fast-csv": "^5.0.1",
"hbs": "^4.1.2",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@babel/eslint-plugin": "^7.14.5",
"connect-livereload": "^0.6.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"livereload": "^0.9.3",
"nodemon": "^2.0.16",
"prettier": "^2.4.1"
}
}