-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 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
49
50
51
52
53
54
55
{
"name": "badge",
"private": true,
"description": "",
"main": "./build/index.js",
"scripts": {
"start": "vercel dev",
"test": "mocha ./public/**/*.test.js",
"pretest": "npm run build",
"build": "tsc -p ./",
"prebuild": "npm run lint",
"lint": "npm run lint:eslint && npm run lint:format",
"lint:eslint": "eslint . --ext .ts,.js --fix",
"lint:format": "prettier --write '**/*.{json,md,yml}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-protocol/badge.git"
},
"author": "aggre",
"license": "MIT",
"bugs": {
"url": "https://github.com/dev-protocol/badge/issues"
},
"homepage": "https://github.com/dev-protocol/badge#readme",
"dependencies": {
"@devprotocol/dev-kit": "6.9.0",
"@types/ramda": "0.28.15",
"@vercel/node": "2.5.21",
"bignumber.js": "9.1.0",
"metric-suffix": "0.0.3",
"ramda": "0.28.0",
"string-pixel-width": "1.10.0",
"web3": "1.8.0"
},
"devDependencies": {
"@types/bignumber.js": "5.0.0",
"@types/get-port": "4.2.0",
"@types/metric-suffix": "0.0.1",
"@types/mocha": "10.0.0",
"@types/node": "16.11.63",
"@types/node-fetch": "3.0.2",
"@types/sinon": "10.0.13",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-functional": "4.4.0",
"eslint-plugin-prettier": "4.2.1",
"mocha": "10.0.0",
"prettier": "2.7.1",
"sinon": "14.0.0",
"typescript": "4.8.4"
}
}