forked from react-toolbox/react-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.99 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "react-toolbox",
"description": "A set of React components implementing Google's Material Design specification with the power of CSS Modules.",
"homepage": "http://www.react-toolbox.com",
"version": "2.0.0-beta.4",
"main": "./lib",
"author": {
"name": "React Toolbox Team",
"url": "http://github.com/react-toolbox"
},
"contributors": [
{
"name": "Javi Jimenez Villar",
"email": "javi.jimenez.villar@gmail.com",
"url": "http://soyjavi.com/"
},
{
"name": "Javi Velasco Arjona",
"email": "javier.velasco86@gmail.com",
"url": "http://javivelasco.com/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/react-toolbox/react-toolbox.git"
},
"bugs": {
"email": "issues@react-toolbox.com",
"url": "https://github.com/react-toolbox/react-toolbox/issues"
},
"keywords": [
"components",
"material design",
"react",
"react-component",
"toolkit"
],
"dependencies": {
"classnames": "^2.2.5",
"core-js": "^2.4.0",
"gulp-rimraf": "^0.2.1",
"normalize.css": "^4.2.0",
"ramda": "^0.22.1",
"react-addons-css-transition-group": "^15.4.0",
"react-css-themr": "^1.7.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"cpx": "^1.5.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-import-resolver-webpack": "^0.8.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.8.0",
"expect": "^1.20.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"git-dirty": "^1.0.2",
"glob": "^7.1.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-postcss": "^6.2.0",
"internal-ip": "^1.2.0",
"karma": "^1.3.0",
"karma-cli": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.8.0",
"lint-staged": "^3.2.3",
"mocha": "^3.1.2",
"phantomjs-prebuilt": "^2.1.14",
"postcss-cssnext": "^2.8.0",
"postcss-each": "^0.9.3",
"postcss-import": "8.1.0",
"postcss-loader": "^1.2.1",
"postcss-mixins": "^5.4.0",
"postcss-reporter": "^3.0.0",
"pre-commit": "^1.2.2",
"react": "^15.4.0",
"react-addons-test-utils": "^15.4.0",
"react-dom": "^15.4.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.2",
"rimraf": "^2.5.2",
"sinon": "^2.0.0-pre.2",
"style-loader": "^0.13.1",
"stylelint": "^7.5.0",
"stylelint-config-standard": "^15.0.0",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.13.0"
},
"scripts": {
"babel": "babel ./components --out-dir ./lib",
"build": "cross-env NODE_ENV=production gulp && npm run tsd",
"clean": "rimraf ./lib",
"css": "cpx \"./components/**/*.css\" ./lib",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint ./components/**/*.css",
"lint:js": "eslint ./ --ext .js",
"lint:staged": "lint-staged",
"patch": "bumped release patch",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"release": "bumped release",
"start": "cross-env NODE_ENV=development UV_THREADPOOL_SIZE=100 node ./server",
"test": "cross-env NODE_ENV=test karma start",
"test:watch": "cross-env NODE_ENV=test karma start --no-single-run",
"tsd": "cpx \"./components/**/*.d.ts\" ./lib"
},
"license": "MIT",
"peerDependencies": {
"classnames": "^2.2.0",
"react": "^0.14 || ~15.4.0",
"react-addons-css-transition-group": "^0.14.0 || ~15.4.0",
"react-dom": "^0.14.0 || ~15.4.0"
},
"pre-commit": "lint:staged"
}