-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.49 KB
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
{
"name": "hfx",
"version": "3.2.1",
"description": "Enhance your HF experience, a native browser extension.",
"private": true,
"scripts": {
"dev": "webpack --config=config/webpack.dev.ts",
"build": "webpack --config=config/webpack.prod.ts",
"template": "ts-node ./templates/index.ts",
"test-options": "ts-node ./scripts/test-react-options-generation.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xadamxk/HFX2.0.git"
},
"author": "xadamxk",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/xadamxk/HFX2.0/issues"
},
"homepage": "https://github.com/xadamxk/HFX2.0#readme",
"devDependencies": {
"@reorx/webpack-ext-reloader": "^1.3.0",
"@types/chrome": "^0.0.237",
"@types/jest": "^29.5.8",
"@types/mustache": "^4.2.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"globby": "^10.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mustache": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}