forked from MatthewHerbst/react-to-print
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.74 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
{
"name": "react-to-print",
"version": "2.12.4",
"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/**/*.{ts,tsx}",
"prepare": "npm run build && husky install",
"start": "NODE_ENV=development webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregnb/react-to-print.git"
},
"keywords": [
"react",
"print",
"reactjs",
"react-to-print"
],
"author": "gregnb <[email protected]>",
"contributors": [
"Matthew Herbst <MatthewHerbst.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gregnb/react-to-print/issues"
},
"homepage": "https://github.com/gregnb/react-to-print#readme",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"acorn": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.1",
"eslint": "^7.24.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.1.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"url-loader": "^4.1.1",
"webpack": "^5.31.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint"
]
}
}