This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
forked from cyntler/react-doc-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.7 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
86
87
88
89
90
91
92
93
94
{
"name": "@harvey.ai/react-doc-viewer",
"version": "1.11.1",
"description": "File viewer for React.",
"author": "Matthew Mogford / Damian Cyntler",
"keywords": [
"reactjs",
"file-viewer"
],
"license": "Apache License 2.0",
"homepage": "https://cyntler.github.io/react-doc-viewer",
"repository": {
"url": "https://github.com/harveyai/react-doc-viewer"
},
"publishConfig": {
"access": "public",
"@kakadiya91:registry": "https://npm.pkg.github.com"
},
"files": [
"dist/**"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "start-storybook -p 6006",
"build": "rm -rf dist && npm run build:esm && npm run build:cjs",
"build:esm": "tsc --noEmit false",
"build:cjs": "tsc --noEmit false --module commonjs --outDir ./dist/cjs",
"test": "react-scripts test --watchAll=false",
"build-storybook": "build-storybook",
"deploy": "npm run build-storybook && gh-pages -d storybook-static",
"release": "npm run test && npm run build && release-it && npm run deploy"
},
"dependencies": {
"@types/mustache": "^4.2.2",
"@types/papaparse": "^5.3.5",
"mustache": "^4.2.0",
"papaparse": "^5.3.2",
"react-pdf": "5.7.2",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/react-pdf": "5.7.4",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"babel-loader": "^8.3.0",
"file-loader": "^6.2.0",
"gh-pages": "^4.0.0",
"jest": "^29.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"release-it": "^15.5.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3",
"webpack": "^5.75.0"
},
"peerDependencies": {
"react": ">=16.13.1",
"react-dom": ">=16.13.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}