-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.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
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
{
"name": "mempool-space-block-tracker-chrome-extenstion",
"version": "1.3.0",
"description": "Chrome extension to track new bitcoin blocks via Mempool Space",
"author": "Savoskin Ivan",
"license": "MIT",
"scripts": {
"dev": "rspack --watch --mode=development",
"prod": "npm run lint && npm run build:prod",
"build:prod": "rspack --mode=production",
"build:dev": "rspack --mode=development",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint --ext .ts,.tsx src --color",
"stylelint": "stylelint \"src/**/*.scss\"",
"lint:fix": "npm run eslint:fix && npm run stylelint:fix",
"eslint:fix": "eslint --ext .ts,.tsx src --color --fix",
"stylelint:fix": "stylelint \"src/**/*.scss\" --fix",
"husky": "husky"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{css,scss}": [
"stylelint --fix",
"git add"
]
},
"dependencies": {
"axios": "1.7.7",
"classnames": "2.5.1",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@rspack/cli": "1.0.7",
"@rspack/core": "1.0.7",
"@svgr/webpack": "8.1.0",
"@types/chrome": "0.0.272",
"@types/react": "18.3.9",
"@types/react-dom": "18.3.0",
"@types/ws": "8.5.12",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"clean-webpack-plugin": "4.0.0",
"css-loader": "7.1.2",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import-x": "4.3.0",
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.36.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unicorn": "55.0.0",
"fork-ts-checker-webpack-plugin": "9.0.2",
"glob": "11.0.0",
"husky": "9.1.6",
"prettier": "3.3.3",
"sass-embedded": "1.79.3",
"sass-loader": "16.0.2",
"stylelint": "16.9.0",
"stylelint-config-sass-guidelines": "12.1.0",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.7.0",
"ts-node": "10.9.2",
"typescript": "5.6.2"
},
"webExt": {
"sourceDir": "dist",
"run": {
"startUrl": [
"https://github.com/IvanSavoskin/bitcoin-blocks-tracker-extension"
]
}
}
}