-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
102 lines (102 loc) · 2.93 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@celo/celostats-server",
"description": "Celostats Network Dashboard",
"version": "0.2.0",
"main": "./dist/server/index.js",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"lint": "eslint --ext .ts ./src ./test/server",
"clean": "rm -rf ./dist ./coverage ./.nyc_output",
"test": "mocha --require ts-node/register --config=test/.mocharc.json --node-env=test --exit",
"test:watch": "yarn test -- --watch",
"test:cover": "nyc yarn test",
"compile": "yarn compile:client && yarn compile:server",
"compile:server": "tsc -b ./src/server",
"compile:client": "grunt",
"watch": "grunt watch",
"dist": "grunt",
"postinstall": "yarn compile:server",
"start": "node ./dist/server/app.js",
"start:inspect": "node --inspect ./dist/server/app.js"
},
"dependencies": {
"@celo/contractkit": "^8.0.0",
"@celo/utils": "^6.0.1",
"@types/compression": "^1.7.5",
"@types/d3": "^6.7.0",
"@types/debounce": "^1.2.4",
"@types/deep-equal": "^1.0.4",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.4",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"angular": "^1.8.3",
"body-parser": "^1.20.2",
"bootstrap": "^5.3.3",
"bufferutil": "~4.0.8",
"chalk": "4.1.2",
"compression": "^1.7.4",
"d3": "~6.7.0",
"d3-collection": "^1.0.7",
"d3-selection": "^3.0.0",
"d3-tip": "^0.9.1",
"debounce": "^2.0.0",
"deep-equal": "^2.2.3",
"elliptic": "^6.5.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"express": "^4.19.2",
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-pug": "^3.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"jquery": "^3.7.1",
"jquery-sparkline": "^2.4.0",
"moment": "^2.24.0",
"ngstorage": "^0.3.11",
"popper.js": "^1.16.0",
"prettier": "3.2.5",
"primus": "^8.0.9",
"primus-emit": "^1.0.0",
"primus-spark-latency": "^0.1.1",
"pug": "^3.0.2",
"sha3": "^2.1.4",
"socket.io": "^4.7.5",
"throttled-queue": "^2.1.4",
"toastr": "^2.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.4",
"underscore": "1.13.6",
"utf-8-validate": "^6.0.3",
"web3": "4.7.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"chai": "^5.1.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/goerli/netstats-server.git"
},
"resolutions": {
"**/underscore": "1.12.1"
},
"homepage": "https://github.com/goerli/netstats-server",
"bugs": {
"url": "https://github.com/goerli/netstats-server/issues"
},
"authors": [],
"license": "LGPL-3.0"
}