forked from uptick/react-keyed-file-browser
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.52 KB
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
{
"name": "react-keyed-file-browser",
"version": "1.11.0",
"description": "Folder based file browser given a flat keyed list of objects, powered by React.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-js": "webpack --mode=production",
"build-css": "node-sass src/browser.sass dist/react-keyed-file-browser.css",
"build": "npm run build-js && npm run build-css",
"prepublish": "npm run build",
"storybook": "start-storybook -p 9001",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digital-learning-gmbh/react-keyed-file-browser.git#master"
},
"keywords": [
"react",
"keyed",
"file",
"document",
"browser",
"s3"
],
"author": "Uptick Pty Ltd / Digital Learning GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/digital-learning-gmbh/react-keyed-file-browser/issues"
},
"homepage": "https://github.com/digital-learning-gmbh/react-keyed-file-browser#readme",
"dependencies": {
"classnames": "^2.2.6",
"date-fns": "^2.12.0",
"i18next": "^19.8.4",
"prop-types": "^15.7.2",
"react-dnd": "^8.0",
"react-dnd-html5-backend": "^8.0",
"react-i18next": "^9.0.10"
},
"peerDependencies": {
"react": "0.14.x || 15.x || 16.x",
"react-dom": "0.14.x || 15.x || 16.x"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.0.0",
"@sambego/storybook-state": "^2.0.1",
"@storybook/react": "^6.0.16",
"babel-cli": "^6.6.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.5",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"font-awesome": "^4.7.0",
"node-sass": "^4.13.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"typescript": "^3.8.3",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.5.4"
}
}