-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.47 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
{
"name": "@omarefg/react-file-preview",
"version": "0.1.23",
"description": "Component to render and preview some kind of documents",
"main": "lib/index.js",
"private": false,
"scripts": {
"start": "ENVIRONMENT=dev webpack-dev-server --mode development",
"publish": "npm publish --access=public",
"transpile": "NODE_ENV=production && rm -rf ./lib && mkdir lib && npx babel src/ --out-dir lib --copy-files"
},
"keywords": [
"react",
"files",
"files preview",
"preview",
"files view",
"view",
"viewer",
"files viewer",
"react-file-viewer"
],
"author": "Omar Flores Grimontt <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/omarefg/react-file-preview.git"
},
"bugs": {
"url": "https://github.com/omarefg/react-file-preview/issues"
},
"homepage": "https://github.com/omarefg/react-file-preview#readme",
"peerDependencies": {
"react": "16.9.0",
"react-dom": "16.9.0",
"prop-types": "15.7.2"
},
"dependencies": {
"@babel/polyfill": "7.7.0",
"@fortawesome/fontawesome-svg-core": "1.2.26",
"@fortawesome/free-solid-svg-icons": "5.12.0",
"@fortawesome/react-fontawesome": "0.1.8",
"axios": "0.19.0",
"comma-separated-values": "3.6.4",
"mammoth": "1.4.9",
"react-pdf": "4.1.0",
"react-table": "6.11.5",
"styled-components": "4.4.1",
"three": "0.108.0",
"xlsx": "0.15.3"
},
"devDependencies": {
"@babel/cli": "7.7.5",
"@babel/core": "7.7.5",
"@babel/plugin-proposal-object-rest-spread": "7.7.4",
"@babel/plugin-transform-react-jsx": "7.7.4",
"@babel/preset-env": "7.7.6",
"@babel/preset-react": "7.7.4",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.6",
"eslint": "6.7.2",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "1.7.0",
"file-loader": "4.3.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"prop-types": "15.7.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"url-loader": "2.3.0",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.11.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}