forked from plangrid/react-file-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.29 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
{
"name": "ksys-file-viewer",
"version": "1.0.0",
"description": "Extendable file viewer for web",
"main": "dist/index.js",
"module": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Tim-Gaud/ksys-file-viewer.git"
},
"scripts": {
"dev": "webpack -d --watch",
"build": "webpack -p --progress",
"start": "node ./scripts/start.js",
"lint": "node_modules/.bin/eslint ./src/**/*.tsx",
"test": "jest --no-cache --config spec/jest-config.json",
"test:watch": "jest --no-cache --config spec/jest-config.json --watch",
"jest": "node_modules/.bin/jest --env=jsdom",
"tag-and-publish": "node ./scripts/publish.js",
"compile": "tsc"
},
"author": "",
"contributors": [
{
"name": "Tim Gaud",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Tim-Gaud/ksys-file-viewer/issues"
},
"homepage": "https://github.com/Tim-Gaud/ksys-file-viewer#readme",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"autoprefixer": "^9.8.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.1.0",
"babel-loader": "8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-object-super": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-runtime": "^6.26.0",
"chalk": "^4.1.0",
"css-loader": "^3.6.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"inquirer": "^7.2.0",
"jest": "^26.1.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"sass-loader": "^8.0.2",
"source-map-loader": "^1.0.0",
"style-loader": "^1.2.1",
"ts-jest": "^26.1.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"babel-eslint": "^10.1.0",
"comma-separated-values": "^3.6.4",
"mammoth": "^1.4.9",
"pdfjs-dist": "1.8.357",
"prop-types": "^15.7.2",
"react-data-grid": "^6.1.0",
"react-visibility-sensor": "^5.1.1",
"three": "0.118.3",
"xlsx": "^0.16.3"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"eslintConfig": {
"extends": "airbnb",
"plugins": [
"import"
],
"settings": {
"import/resolver": {
"webpack": "webpack.config.js"
}
}
}
}