-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.41 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
{
"name": "react-pdf-print",
"version": "0.1.9",
"main": "build/index.js",
"description": "Prints web pages into multipage pdf file",
"author": {
"name": "francescochiapello",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/francescochiapello/react-pdf-print"
},
"keywords": [
"react",
"pdf",
"printer"
],
"dependencies": {
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.0",
"unit-to-px": "^1.0.5"
},
"scripts": {
"start": "webpack --watch",
"start-react": "react-script start",
"lint": "standard --verbose | snazzy",
"lint-fix": "standard --fix",
"build": "webpack"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"snazzy": "^9.0.0",
"standard": "^16.0.4",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}