forked from MatthewHerbst/react-to-print
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.57 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
{
"name": "react-to-print",
"version": "2.1.2",
"description": "Print React components in the browser",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"start": "webpack-dev-server --env.development --progress --colors --hot --open",
"build": "webpack --env.production --progress",
"prepare": "npm run build",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregnb/react-to-print.git"
},
"keywords": [
"react",
"print",
"reactjs",
"react-to-print"
],
"author": "gregnb <[email protected]>",
"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",
"react-dom": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"prop-types": "^15.6.2"
},
"devDependencies": {
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"acorn": "^6.1.1",
"clean-webpack-plugin": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"lint-staged": "^7.3.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"typescript": "^3.3.4000",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint",
"git add"
]
}
}