-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.78 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
{
"name": "helium-payment-calculator",
"version": "1.0.0",
"description": "Web application that can calculate the exact amount of HNT to pay someone that is hosting your hotspot.",
"keywords": [
"blockchain",
"mining",
"helium",
"hnt",
"helium-blockchain",
"helium-network",
"helium-mining"
],
"homepage": "https://github.com/matthewdowns/helium-payment-calculator#readme",
"bugs": {
"url": "https://github.com/matthewdowns/helium-payment-calculator/issues"
},
"license": "GPL-3.0",
"author": "Matthew Downs <matthew.downsc@gmail.com>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/matthewdowns/helium-payment-calculator.git"
},
"scripts": {
"start": "webpack serve --open --mode development",
"lint": "eslint .",
"build": "rimraf dist && webpack --mode production"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@helium/http": "^4.2.0",
"antd": "^4.22.8",
"moment": "^2.29.3",
"rc-footer": "^0.6.6",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@types/react": "^18.0.8",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^7.32.0",
"file-loader": "^6.2.0",
"glob": "^8.0.1",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mini-css-extract-plugin": "^2.6.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.3.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.6.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.10.1"
},
"engines": {
"node": ">=14 <=16"
},
"private": true
}