-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "react-excel-workbook",
"version": "0.0.4",
"description": "An downloadable excel workbook react component",
"main": "lib/index.js",
"scripts": {
"start": "cd example && webpack-dev-server --inline --content-base dist --history-api-fallback --port 8082",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"author": "David Adams",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ClearC2/react-excel-workbook"
},
"keywords": [
"react-component",
"excel",
"workbook"
],
"dependencies": {
"file-saver": "^1.3.3",
"xlsx": "^0.10.3"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"eslint": "^3.12.1",
"eslint-plugin-react": "^6.8.0",
"html-webpack-plugin": "^2.24.1",
"json-loader": "^0.5.4",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"webpack": "github:webpack/webpack#v2.1.0-beta.27",
"webpack-dev-server": "github:webpack/webpack-dev-server#v2.1.0-beta.12"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0",
"prop-types": "^15.0.0"
},
"homepage": "https://github.com/ClearC2/react-excel-workbook"
}