-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
116 lines (116 loc) · 3.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
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
{
"name": "bfd-ui",
"version": "1.5.10",
"description": "企业级 React 组件库 🚀",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit",
"lint": "eslint src",
"unit": "jest",
"compile": "rimraf lib && babel src -d lib --ignore __tests__ && gulp",
"start": "node-dev site/server.js",
"pack": "webpack -p --progress --config ./site/webpack.config.js",
"server": "NODE_ENV=production pm2 start site/server.js",
"create": "node bin/create.js",
"banner": "file-banner src --ignore '__tests__|\\.png'",
"coverage": "coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/baifendian/bfd-ui.git"
},
"keywords": [
"react components",
"ui component",
"react ui"
],
"author": "",
"license": "BSD",
"bugs": {
"url": "https://github.com/baifendian/bfd-ui/issues"
},
"homepage": "https://github.com/baifendian/bfd-ui",
"dependencies": {
"babel-plugin-transform-runtime": "^6.12.0",
"classlist": "^1.0.1",
"classnames": "^2.2.3",
"css-loader": "^0.23.0",
"d3": "^3.5.11",
"dateformat": "^1.0.12",
"file-loader": "^0.8.5",
"font-awesome": "^4.6.3",
"history": "^1.17.0",
"invariant": "^2.2.1",
"json-loader": "^0.5.4",
"lodash": "^4.16.2",
"nprogress": "^0.2.0",
"react": "^0.14.7",
"react-addons-css-transition-group": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^2.1.0",
"react-update": "^0.4.2",
"style-loader": "^0.13.0"
},
"devDependencies": {
"autoprefixer": "^6.4.1",
"babel-cli": "^6.3.17",
"babel-eslint": "^5.0.4",
"babel-jest": "^10.0.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chalk": "^1.1.3",
"classlist": "^1.0.1",
"code-beautify": "0.0.11",
"compression": "^1.6.0",
"domain": "0.0.1",
"eslint": "^1.10.3",
"eslint-cli": "^1.1.0",
"eslint-plugin-react": "^4.2.3",
"express": "^4.13.3",
"fastclick": "^1.0.6",
"file-banner": "0.0.6",
"gulp": "^3.9.1",
"gulp-less": "^3.1.0",
"gulp-postcss": "^6.2.0",
"gulp-replace": "^0.5.4",
"html-loader": "^0.4.3",
"jest-cli": "^0.10.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"lodash": "^4.14.0",
"markdown-loader": "^0.1.7",
"marked": "^0.3.6",
"mkdirp": "^0.5.1",
"multiparty": "^4.1.2",
"node-dev": "^3.1.3",
"normalize.css": "^4.2.0",
"pm2": "^1.0.2",
"postcss-for": "^2.1.1",
"postcss-loader": "^0.8.2",
"react-addons-test-utils": "^0.14.8",
"rimraf": "^2.5.4",
"webpack": "^1.12.12",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.10.0",
"webpack-livereload-plugin": "^0.8.1"
},
"jest": {
"globals": {},
"scriptPreprocessor": "<rootDir>/jestPreproess",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules",
"<rootDir>/src"
],
"testPathDirs": [
"<rootDir>/src"
],
"moduleFileExtensions": [
"js"
],
"testFileExtensions": [
"js"
]
}
}