forked from react-toolbox/react-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.77 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
{
"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.io",
"version": "2.0.0-beta.11",
"main": "lib/index.js",
"author": {
"email": "javier.velasco86@gmail.com",
"name": "Javier Velasco Arjona",
"url": "http://javivelasco.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-toolbox/react-toolbox.git"
},
"bugs": {
"email": "issues@react-toolbox.io",
"url": "https://github.com/react-toolbox/react-toolbox/issues"
},
"keywords": [
"components",
"material design",
"react",
"react-component",
"toolkit"
],
"dependencies": {
"classnames": "2.2.6",
"ramda": "0.26.1",
"react-css-themr": "2.1.2",
"react-style-proptype": "3.2.2"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-export-default-from": "7.5.2",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"@types/node": "^12.6.9",
"@types/react": "^16.8.24",
"babel-loader": "^8.0.6",
"core-js": "3.1.4",
"cpx": "^1.5.0",
"cross-env": "^5.2.0",
"css-loader": "^3.1.0",
"express": "^4.17.1",
"git-dirty": "^1.0.2",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-postcss": "^8.0.0",
"gulp-rimraf": "^1.0.0",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^9.2.1",
"normalize.css": "^8.0.1",
"npm-check-updates": "github:przemyslawzalewski/npm-check-updates#770a9c52ac3679e9dc1cbf94ae66a91f472a7ae1",
"postcss-cssnext": "^3.1.0",
"postcss-each": "^0.10.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-mixins": "^6.2.2",
"postcss-nesting": "^7.0.1",
"postcss-reporter": "^6.0.1",
"pre-commit": "^1.2.2",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-addons-test-utils": "^15.6.2",
"react-dom": "16.8.6",
"react-test-renderer": "16.8.6",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"build": "cross-env NODE_ENV=production gulp",
"clean": "rimraf ./lib",
"css": "cpx \"./components/**/*.css\" ./lib",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"update": "ncu --upgradeAll -a",
"update:check": "ncu"
},
"license": "MIT",
"peerDependencies": {
"core-js": "^3.1.4",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"browserslist": [
"Chrome >= 57",
"Firefox >= 53",
"Opera >= 44",
"Safari >= 10",
"Edge >= 14",
"ChromeAndroid >= 57",
"iOS >= 10",
"IE >= 11"
]
}