-
Notifications
You must be signed in to change notification settings - Fork 340
/
package.json
128 lines (128 loc) · 3.61 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "react-file-viewer",
"version": "1.2.4-fix-photo-viewer.2",
"description": "Extendable file viewer for web",
"main": "dist/index.js",
"module": "dist/index.js",
"engines": {
"node": "^14.17.6",
"npm": "^8.19.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plangrid/react-file-viewer.git"
},
"scripts": {
"dev": "webpack -d --watch",
"build": "webpack --progress",
"start": "node ./scripts/start.js",
"lint": "node_modules/.bin/eslint ./src/**/*.jsx",
"test": "node_modules/.bin/jest --env=jsdom --watch",
"jest": "node_modules/.bin/jest --env=jsdom",
"tag-and-publish": "node ./scripts/publish.js"
},
"author": "PlanGrid <[email protected]>",
"contributors": [
{
"name": "Alexei Schiopu",
"email": "[email protected]",
"url": "http://schiopu.me"
},
{
"name": "Aaron Norby",
"email": "[email protected]"
},
{
"name": "Viktoriya Savkina",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/plangrid/react-file-viewer/issues"
},
"homepage": "https://github.com/plangrid/react-file-viewer#readme",
"devDependencies": {
"autoprefixer": "^7.1.0",
"babel-core": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-es2015-classes": "^6.18.0",
"babel-plugin-transform-es2015-object-super": "^6.6.5",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "6.5.0",
"babel-runtime": "^6.20.0",
"chalk": "^1.1.3",
"css-loader": "^0.28.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"inquirer": "^3.0.6",
"jest": "^23.6.0",
"postcss-loader": "^2.0.5",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.6.3",
"sass": "^1.70.0",
"sass-loader": "^6.0.5",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"comma-separated-values": "^3.6.4",
"mammoth": "1.3.6",
"pdfjs-dist": "1.8.357",
"prop-types": "^15.5.10",
"react-data-grid": "^5.0.5",
"react-visibility-sensor": "^5.0.2",
"three": "0.85.2",
"xlsx": "^0.10.1"
},
"peerDependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|node_modules|scripts|example_files)[/\\\\]"
],
"testEnvironment": "node",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.(css|scss)$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleDirectories": [
"src",
"node_modules"
],
"setupTestFrameworkScriptFile": "<rootDir>/tests/setupTests.js"
},
"eslintConfig": {
"extends": "airbnb",
"plugins": [
"import"
],
"settings": {
"import/resolver": {
"webpack": "webpack.config.js"
}
}
}
}