This repository has been archived by the owner on Jan 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathpackage.json
79 lines (79 loc) · 2.68 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
{
"name": "react-keyed-file-browser",
"version": "1.14.0",
"description": "Folder based file browser given a flat keyed list of objects, powered by React.",
"main": "index.js",
"scripts": {
"publish-demo": "git branch -D gh-pages; git push origin --delete gh-pages; git checkout -b gh-pages; cd demo-site; yarn; npm run build; cd ..; git add .; git add -f demo-site/dist; git add -f demo-site/node_modules/uptick-demo-site/dist; git commit -m \"Demo site build\"; git push origin gh-pages; git checkout master; git push origin `git subtree split --prefix demo-site gh-pages`:gh-pages --force;",
"test": "echo \"Error: no test specified\" && exit 1",
"build-js": "./node_modules/.bin/webpack --mode=production",
"build-css": "./node_modules/.bin/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",
"start": "webpack serve --config webpack.config.js"
},
"files": [
"dist/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/uptick/react-keyed-file-browser.git"
},
"keywords": [
"react",
"keyed",
"file",
"document",
"browser",
"s3"
],
"author": "Uptick Pty Ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/uptick/react-keyed-file-browser/issues"
},
"homepage": "https://github.com/uptick/react-keyed-file-browser#readme",
"dependencies": {
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"esbuild-linux-64": "^0.15.18",
"lodash.flow": "^3.5.0",
"prop-types": "^15.8.1",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0",
"react-router-dom": "^6.7.0"
},
"peerDependencies": {
"react": "0.14.x || 15.x || 16.x || 17.x"
},
"devDependencies": {
"@sambego/storybook-state": "^2.0.1",
"@storybook/react": "^6.5.15",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"css-loader": "^6.7.3",
"esbuild": "^0.17.3",
"esbuild-loader": "^2.21.0",
"eslint": "^8.32.0",
"eslint-config-standard": "*",
"eslint-config-standard-react": "*",
"eslint-plugin-import": "*",
"eslint-plugin-node": "*",
"eslint-plugin-promise": "*",
"eslint-plugin-react": "*",
"eslint-plugin-standard": "*",
"font-awesome": "^4.7.0",
"node-sass": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-node-externals": "^3.0.0"
}
}