-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
75 lines (75 loc) · 2.52 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
{
"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"
},
"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.2.6",
"date-fns": "^2.22.1",
"lodash.flow": "^3.5.0",
"prop-types": "^15.7.2",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0"
},
"peerDependencies": {
"react": "0.14.x || 15.x || 16.x || 17.x"
},
"devDependencies": {
"@sambego/storybook-state": "^2.0.1",
"@storybook/react": "^6.2.9",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"css-loader": "^6.2.0",
"esbuild": "^0.12.5",
"esbuild-loader": "^2.13.1",
"eslint": "^7.27.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": "^6.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.1.0",
"typescript": "^4.3.2",
"webpack": "^4.29.1",
"webpack-cli": "^4.7.0",
"webpack-node-externals": "^1.5.4"
}
}