-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
73 lines (73 loc) · 1.96 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
{
"name": "react-file-previewer",
"version": "1.0.0",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"repository": "[email protected]:vendorpay/react-file-previewer.git",
"author": "Jonathan Stevens<[email protected]>Jonathan Stevens<[email protected]>, Vijay Sundharapandiyan<[email protected]>",
"keywords": [
"pdf viewer",
"file viewer",
"image viewer",
"react-pdf"
],
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "echo 'todo'",
"clean": "rimraf ./dist",
"prepublish": "npm run build",
"build": "rimraf ./dist && rollup -c",
"publish-npm": "npm run build && npm publish",
"watch": "rimraf ./dist && rollup -c -w",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": "^18.2.0"
},
"lint-staged": {
"*.js": [
"yarn run lint",
"prettier --write",
"git add"
]
},
"dependencies": {
"file-saver": "2.0.5",
"mime-types": "2.1.35",
"ramda": "0.29.1",
"react-icons": "^4.11.0",
"react-intersection-observer": "9.5.2",
"react-pdf": "7.5.0"
},
"devDependencies": {
"@babel/compat-data": "7.23.2",
"@babel/core": "7.23.2",
"@babel/preset-env": "7.23.2",
"@babel/preset-react": "7.22.15",
"@storybook/addon-actions": "7.4.6",
"@storybook/addon-links": "7.4.6",
"@storybook/addons": "7.4.6",
"@storybook/react": "7.4.6",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"classnames": "2.3.2",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"prop-types": "15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "18.2.0",
"rimraf": "5.0.5",
"rollup": "4.0.2",
"@rollup/plugin-babel": "6.0.4",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-copy": "3.5.0"
},
"resolutions": {
"@babel/preset-env": "7.23.2"
}
}