-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "react-dropbox-chooser",
"version": "0.0.5",
"description": "Simple react wrapper for dropbox chooser API",
"main": "dist/react-dropbox-chooser.js",
"scripts": {
"start": "npm run build && node server.js",
"build": "rm -rf ./dist && babel src --out-dir dist",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/sdoomz/react-dropbox-chooser.git"
},
"keywords": [
"react",
"dropbox",
"files",
"picker",
"chooser"
],
"author": "Sviatoslav Shmatko <[email protected]> (http://github.com/sdoomz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sdoomz/react-dropbox-chooser/issues"
},
"homepage": "https://github.com/sdoomz/react-dropbox-chooser",
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.6.2",
"express": "^4.13.4",
"prop-types": "^15.6.0",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"rollup": "^0.38.0",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.6.1"
},
"dependencies": {
"load-script": "^1.0.0"
}
}