-
Notifications
You must be signed in to change notification settings - Fork 302
/
package.json
107 lines (107 loc) · 3.21 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "rctui",
"author": "lobos841@gmail.com",
"version": "0.7.22",
"description": "a collection of components for React",
"main": "./src/index.js",
"scripts": {
"dev": "node devServer.js",
"docs": "cross-env NODE_ENV=production webpack --config webpack.config.docs.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"lint": "./node_modules/.bin/eslint src && ./node_modules/.bin/eslint docs/src",
"test": "env NODE_ENV=test ./node_modules/.bin/karma start",
"test:e2e": "gulp test:e2e"
},
"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"
},
"devDependencies": {
"autoprefixer": "~6.3.4",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "~6.2.4",
"babel-plugin-react-require": "^2.1.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-es2015-classes": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "~6.6.5",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "~6.11.1",
"chai": "~3.5.0",
"chai-enzyme": "^0.4.2",
"cross-env": "^2.0.1",
"css-loader": "~0.23.1",
"enzyme": "^2.2.0",
"eslint": "~3.4.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "~4.2.3",
"estraverse": "~4.2.0",
"estraverse-fb": "~1.3.1",
"express": "~4.13.4",
"extract-text-webpack-plugin": "~1.0.1",
"file-loader": "~0.8.5",
"gulp": "^3.9.1",
"gulp-webdriver": "^2.0.1",
"isparta-instrumenter-loader": "^1.0.0",
"karma": "~0.13.22",
"karma-chai": "^0.1.0",
"karma-chai-plugins": "^0.7.0",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.5",
"karma-phantomjs-launcher": "^0.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"less": "~2.6.1",
"less-loader": "~2.2.2",
"loader-utils": "~0.2.12",
"material-design-iconic-font": "^2.2.0",
"md5": "~2.0.0",
"mkdirp": "~0.5.1",
"mocha": "^2.3.4",
"mocha-loader": "^0.7.1",
"multer": "^1.2.0",
"node-sass": "^4.9.3",
"phantomjs": "~2.1.3",
"postcss-loader": "~0.8.2",
"precss": "~1.4.0",
"pubsub-js": "^1.5.3",
"rctui-example-loader": "^0.1.0",
"rctui-theme-loader": "^0.2.1",
"react": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.2",
"react-language": "^0.1.4",
"react-perf-switch": "^0.1.9",
"react-router-dom": "^4.1.2",
"react-transform-hmr": "^1.0.4",
"stats-webpack-plugin": "~0.3.1",
"style-loader": "~0.13.0",
"underscore": "^1.8.3",
"url-loader": "~0.5.7",
"webpack": "~1.12.14",
"webpack-dashboard": "0.0.1",
"webpack-dev-middleware": "~1.5.1",
"webpack-hot-middleware": "~2.10.0"
},
"dependencies": {
"classnames": "^2.2.5",
"curry": "^1.2.0",
"object-assign": "^4.0.1",
"prop-types": "^15.5.8",
"quill": "^1.0.4",
"refetch": "^0.2.4",
"sass-loader": "^6.0.3"
}
}