forked from uptick/react-keyed-file-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.47 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
{
"name": "react-keyed-file-browser",
"version": "1.4.1",
"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/webpack/bin/webpack.js",
"build-css": "./node_modules/node-sass/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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taofather/react-keyed-file-browser.git"
},
"keywords": [
"react",
"keyed",
"file",
"document",
"browser",
"s3"
],
"author": "Taofather",
"license": "MIT",
"bugs": {
"url": "https://github.com/taofather/react-keyed-file-browser/issues"
},
"homepage": "https://github.com/taofather/react-keyed-file-browser#readme",
"dependencies": {
"classnames": "^2.2.3",
"moment": "^2.17.0",
"prop-types": "^15.5.8",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2"
},
"peerDependencies": {
"react": "0.14.x || 15.x || 16.x",
"react-dom": "0.14.x || 15.x || 16.x"
},
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-core": "^6.5.2",
"babel-eslint": "^9.0.0",
"babel-loader": "^6.2.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-jsx": "^6.0.2",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"node-sass": "^3.4.2",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"webpack": "^1.12.13",
"webpack-node-externals": "^1.5.4"
}
}