-
-
Notifications
You must be signed in to change notification settings - Fork 221
/
package.json
68 lines (68 loc) · 1.72 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
{
"name": "react-to-print",
"version": "3.0.2",
"description": "Print React components in the browser",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "NODE_ENV=production webpack --progress",
"lint": "eslint ./src",
"prepare": "npm run build && husky install",
"start": "NODE_ENV=development webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatthewHerbst/react-to-print.git"
},
"keywords": [
"react",
"print",
"reactjs",
"react-to-print"
],
"author": "Matthew Herbst <MatthewHerbst.com>",
"contributors": [
"gregnb <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/MatthewHerbst/react-to-print/issues"
},
"homepage": "https://github.com/MatthewHerbst/react-to-print#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ~19"
},
"devDependencies": {
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"acorn": "^8.12.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^8.56.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-tabs": "^6.0.2",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"url-loader": "^4.1.1",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint"
]
}
}