forked from AllenFang/react-bootstrap-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.96 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
80
81
82
83
{
"name": "react-bootstrap-table",
"version": "3.1.1",
"description": "It's a react table for bootstrap",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/AllenFang/react-bootstrap-table.git"
},
"scripts": {
"lint": "eslint src",
"start": "gulp example-server"
},
"keywords": [
"react",
"bootstrap",
"table",
"grid",
"react-component"
],
"files": [
"README.md",
"lib/",
"dist/",
"css/"
],
"tags": [
"react"
],
"author": "AllenFang",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babelify": "^6.4.0",
"bootstrap": "3.3.5",
"browserify": "^11.2.0",
"css-loader": "^0.21.0",
"del": "^2.2.0",
"eslint": "1.7.3",
"eslint-config-airbnb": "0.1.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "3.6.3",
"gulp": "^3.9.1",
"gulp-babel": "^6.0.0",
"gulp-concat-css": "^2.2.0",
"gulp-cssmin": "^0.1.7",
"gulp-shell": "^0.5.2",
"history": "3.0.0",
"jquery": "^2.1.4",
"jsx-loader": "^0.13.2",
"react": "^0.14.3 || ^15.0.0",
"react-bootstrap": "^0.29.5",
"react-dom": "^0.14.3 || ^15.0.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-router": "^3.0.0",
"style-loader": "^0.13.0",
"styled-components": "^1.2.1",
"toastr": "^2.1.2",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.0.0",
"webpack": "^1.12.4",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"classnames": "^2.1.2",
"react-modal": "^1.4.0",
"@allenfang/react-toastr": "2.8.2"
},
"peerDependencies": {
"react": "^0.14.3 || ^15.0.0"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}