-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
78 lines (78 loc) · 2.09 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
{
"name": "react-ui-component",
"version": "2.0.3",
"description": "some component build with ReactJs",
"main": "main.js",
"scripts": {
"start": "babel --presets es2015,react --watch component/ --out-dir lib/ & cross-env NODE_ENV=dev node server.js",
"build": "NODE_ENV=production webpack -p",
"test": "jest",
"lint": "eslint lib"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/jerryshew/react-component.git"
},
"keywords": [
"react",
"ui",
"reactjs",
"react component",
"checkbox group",
"drop down",
"pagination",
"carousel",
"css framework"
],
"author": "wecatch",
"license": "MIT",
"bugs": {
"url": "https://github.com/jerryshew/react-component/issues"
},
"devDependencies": {
"autoprefixer": "^6.3.5",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-jest": "^18.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-transform": "^1.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.5.0",
"babel-runtime": "^6.0.0",
"cross-env": "^3.1.3",
"css-loader": "^0.17.0",
"eslint": "^3.9.1",
"express": "^4.13.3",
"force-case-sensitivity-webpack-plugin": "^0.1.1",
"html-webpack-plugin": "^1.6.1",
"jest": "^18.1.0",
"jest-cli": "^18.1.0",
"jsx-loader": "^0.13.2",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"postcss-loader": "^0.8.2",
"pre-commit": "^1.1.3",
"precss": "^1.4.0",
"react-hot-loader": "^1.3.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-transform-hmr": "^1.0.0",
"style-loader": "^0.12.3",
"uglify-loader": "^1.2.0",
"webpack": "^1.12.1",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.5.0"
},
"homepage": "https://github.com/jerryshew/react-component",
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.2.0"
}
}