forked from Lobos/react-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "rctui",
"author": "[email protected]",
"version": "0.5.2",
"description": "a collection of components for React",
"main": "./src/index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/_mocha --compilers js:babel-core/register --recursive",
"test-cov": "NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --compilers js:babel-core/register --recursive",
"dev": "node devServer.js",
"docs": "NODE_ENV=production webpack --config webpack.config.docs.js",
"build": "NODE_ENV=production webpack --config webpack.config.prod.js",
"lint": "./node_modules/.bin/eslint src && ./node_modules/.bin/eslint docs/src"
},
"keywords": [
"react ui",
"react-ui",
"react-component"
],
"repository": {
"type": "git",
"url": "https://github.com/Lobos/react-ui.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lobos/react-ui/issues"
},
"browserify": {
"transform": [
[
"reactify",
"babelify",
{
"es6": true
}
]
]
},
"dependencies": {
"classnames": "^2.1.3",
"refetch": "~0.1.2",
"pubsub-js": "^1.5.2"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"chai": "^3.4.1",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.11.3",
"express": "~4.13.3",
"extract-text-webpack-plugin": "^0.8.1",
"file-loader": "^0.8.4",
"history": "1.13.1",
"istanbul": "~0.4.1",
"jsdom": "~7.1.1",
"jszip": "^2.5.0",
"koa": "^0.21.0",
"koa-body": "^1.2.1",
"koa-router": "^5.1.2",
"koa-static": "^1.5.2",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"material-design-iconic-font": "^2.2.0",
"md5": "~2.0.0",
"mkdirp": "^0.5.1",
"mocha": "^2.3.4",
"mocha-jsdom": "~1.0.0",
"object-assign": "^4.0.1",
"purecss": "^0.6.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-router": "1.0.2",
"stats-webpack-plugin": "^0.1.1",
"style-loader": "^0.13.0",
"underscore": "^1.8.3",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
}
}