-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.95 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.95 KB
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
{
"author": "OpusCapita (www.opuscapita.com)",
"name": "@opuscapita/react-layouts",
"version": "1.0.2",
"private": false,
"description": "OpusCapita react layouts",
"main": "lib/react-layouts.js",
"scripts": {
"lint": "node_modules/.bin/eslint --ext .jsx,.js src/ examples/",
"build": "webpack -p --config webpack.config.js",
"dev": "webpack --progress --colors --watch",
"test": "cross-env NODE_ENV=test mocha --require ignore-styles --require babel-core/register --colors test/test.setup.js test/**/*.spec.*",
"docs": "webpack --config webpack.docs.config.js",
"hot": "webpack-dev-server --config webpack.examples.hot.config.js",
"preversion": "npm run lint && npm test",
"version": "npm run build && git add -A lib",
"postversion": "git push && git push --tags"
},
"peerDependencies": {
"react": "^15.6.2 || ^16.2.0",
"react-dom": "^15.6.2 || ^16.2.0"
},
"devDependencies": {
"autoprefixer": "^6.6.1",
"babel": "6.23.0",
"babel-core": "6.24.0",
"babel-eslint": "7.2.1",
"babel-loader": "6.4.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"bootstrap-sass": "^3.3.7",
"chai": "3.5.0",
"chai-immutable": "^1.6.0",
"clean-webpack-plugin": "^0.1.15",
"cross-env": "4.0.0",
"css-loader": "0.28.0",
"enzyme": "^2.7.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"eslint-watch": "^2.1.14",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.10.1",
"html-webpack-plugin": "^2.28.0",
"ignore-styles": "^5.0.1",
"immutable": "^3.8.1",
"jquery": "^3.1.1",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"node-sass": "^4.4.0",
"npm": "^4.2.0",
"postcss-flexbugs-fixes": "^2.1.0",
"postcss-loader": "^1.2.1",
"precss": "^1.4.0",
"progress-bar-webpack-plugin": "^1.9.3",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-router": "^3.0.0",
"react-svg-loader": "^1.1.1",
"react-test-renderer": "^15.6.2",
"redux": "^3.7.2",
"redux-mock-store": "^1.2.1",
"redux-thunk": "^2.2.0",
"sass-loader": "6.0.3",
"sinon": "2.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "2.3.2",
"webpack-dev-server": "5.2.1",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.5.4",
"write-file-webpack-plugin": "^3.4.2"
},
"dependencies": {
"@opuscapita/react-icons": "^1.3.1",
"prop-types": "15.5.10",
"react-bootstrap": "0.31.5",
"react-immutable-proptypes": "^2.1.0",
"react-redux": "^5.0.7",
"react-split-pane": "^0.1.77"
},
"repository": {
"type": "git",
"url": "https://github.com/OpusCapita/react-layouts.git"
}
}