forked from cyntler/react-doc-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.01 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
95
96
97
98
99
100
{
"name": "@cyntler/react-doc-viewer",
"version": "1.14.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/cyntler/react-doc-viewer"
},
"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": "storybook dev -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",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"build-storybook": "storybook build",
"deploy": "npm run build-storybook && gh-pages -d storybook-static",
"release": "npm run prettier:check && npm run test && npm run build && release-it && npm run deploy"
},
"dependencies": {
"@types/mustache": "^4.2.3",
"@types/papaparse": "^5.3.9",
"mustache": "^4.2.0",
"papaparse": "^5.4.1",
"react-pdf": "7.5.0",
"styled-components": "^6.0.8"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@storybook/addon-actions": "^7.4.6",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-interactions": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/react": "^7.4.6",
"@storybook/react-webpack5": "^7.4.6",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.3",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.11",
"@types/react-pdf": "7.0.0",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.28",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"babel-loader": "^9.1.3",
"eslint-plugin-storybook": "^0.6.15",
"file-loader": "^6.2.0",
"gh-pages": "^6.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"release-it": "^16.2.1",
"storybook": "^7.4.6",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2"
},
"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"
]
}
}