-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.24 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@cantoo/html2pdf",
"version": "0.0.4",
"scripts": {
"test": "jest",
"prepare": "tsc",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"lint": "eslint --fix .",
"build": "webpack",
"web": "webpack-dev-server --open --mode development",
"release": "release-it"
},
"dependencies": {
"html2pdf.js": "^0.9.2"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"@types/jest": "^25.2.2",
"@types/react": "^16.9.35",
"@types/react-native": "^0.62.9",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^4.0.1",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^24.9.0",
"lint-staged": "^10.2.2",
"metro-react-native-babel-preset": "^0.58.0",
"react": "16.11.0",
"react-dom": "^16.13.1",
"react-native": "0.62.2",
"react-native-html-to-pdf": "^0.8.0",
"react-native-typescript-transformer": "^1.2.13",
"react-native-web": "^0.12.2",
"react-test-renderer": "16.11.0",
"release-it": "^14.0.1",
"ts-jest": "^25.5.1",
"ts-loader": "^7.0.4",
"typescript": "^3.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"react": ">=16.11.0",
"react-dom": ">=16.13.1",
"react-native": ">=0.62.2",
"react-native-web": ">=0.12.2",
"react-native-html-to-pdf": ">=0.8.0"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"*.[tj]s?(x)": [
"eslint . --fix",
"git add"
]
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts"
}