-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
116 lines (116 loc) · 3.25 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": "react-rainie-toolbox",
"version": "1.0.7",
"main": "lib",
"scripts": {
"start": "node ./scripts/start.js",
"build": "rm -rf ./lib && gulp",
"flow": "flow server",
"doc": "rm -rf ./docs && webpack --config ./config/webpack.pro.js",
"test": "jest",
"test:watch": "jest --watch --no-watchman",
"test:cov": "npm test -- --coverage -w 2",
"lint": "eslint components ./.eslintrc --ext '.js,.jsx'",
"release": "npm run build && cqgit"
},
"devDependencies": {
"autoprefixer": "^6.6.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-cq": "^0.0.8",
"babel-preset-cqaso-kit": "^0.0.3",
"babel-react-render-defender": "^1.1.1",
"chalk": "^1.1.3",
"chunk-manifest-webpack-plugin": "^1.0.0",
"coveralls": "^2.13.0",
"css-loader": "^0.26.1",
"cssnext": "^1.8.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^3.19.0",
"eslint-config-cqaso-kit": "^0.0.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"file-loader": "^0.10.0",
"flow-bin": "^0.43.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-postcss": "^6.4.0",
"happypack": "^3.0.2",
"html-webpack-plugin": "^2.24.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^19.0.2",
"jest-cli": "^22.4.3",
"normalize.css": "^5.0.0",
"postcss": "^5.1.2",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.2.1",
"postcss-mixins": "^5.2.0",
"postcss-nested": "^1.0.0",
"postcss-url": "^5.1.2",
"pre-commit": "^1.2.2",
"react": "^16.3.2",
"react-dev-utils": "^0.4.2",
"react-dom": "^16.3.2",
"regenerator-runtime": "^0.10.3",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-bundle-analyzer": "^2.3.1",
"webpack-chunk-hash": "^0.4.0",
"webpack-dev-server": "^2.2.0"
},
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"codemirror": "^5.14.2",
"cq-kit-dom": "^0.0.3",
"css-animation": "^1.3.2",
"date-fns": "^1.29.0",
"dom-align": "^1.5.3",
"object-assign": "^4.1.0",
"promise": "^7.1.1",
"prop-types": "^15.6.1",
"ramda": "^0.23.0",
"rc-animate": "^2.4.4",
"react-css-themr": "^2.1.2",
"react-date-range": "^1.0.0-alpha5",
"react-ultimate-pagination": "^1.2.0",
"warning": "^3.0.0"
},
"peerDependencies": {
"react": "15.x || 16.x",
"react-dom": "15.x || 16.x"
},
"jest": {
"testRegex": "(\\.|/)(__test__|spec)\\.jsx?$",
"collectCoverageFrom": [
"components/**/*.{js,jsx}"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(css$)": "identity-obj-proxy"
},
"modulePaths": [
"<rootDir>"
]
},
"pre-commit": [
"lint"
]
}