forked from aruberto/react-foundation-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.75 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
{
"name": "react-foundation-components",
"version": "0.11.2",
"description": "Foundation Sites components built with the power of React and CSS Modules",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib docs/lib",
"lint": "eslint src && eslint docs && eslint examples && sass-lint --verbose",
"build": "npm run clean && babel --quiet src --out-dir lib && cpy \"**/*.scss\" ../lib --parents --cwd=src && node create-flex-components.js && node create-global-scoped-components.js",
"build-docs": "npm run clean && npm run build && webpack --config docs/webpack.config.js",
"start-docs": "npm run build && node server.js docs/webpack.config.js --dev",
"start-examples-css-modules": "npm run build && node server.js examples/css-modules/webpack.config.js",
"start-examples-css-modules-custom": "npm run build && node server.js examples/css-modules-custom/webpack.config.js",
"start-examples-global": "npm run build && node server.js examples/global/webpack.config.js",
"start-examples-global-flex": "npm run build && node server.js examples/global-flex/webpack.config.js",
"start-examples-cdn": "npm run build && node server.js examples/cdn/webpack.config.js",
"start-examples-cdn-flex": "npm run build && node server.js examples/cdn-flex/webpack.config.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release-patch": "npm run build && release-it",
"release-minor": "npm run build && release-it minor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aruberto/react-foundation-components.git"
},
"keywords": [
"react",
"foundation",
"foundation-sites",
"css-modules",
"react-component"
],
"author": "aruberto",
"license": "MIT",
"bugs": {
"url": "https://github.com/aruberto/react-foundation-components/issues"
},
"homepage": "https://github.com/aruberto/react-foundation-components#readme",
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"classnames": "^2.2.5",
"dom-helpers": "^2.4.0",
"foundation-sites": "^6.2.3",
"lodash": "^4.16.1",
"react-overlays": "^0.6.6",
"react-prop-types": "^0.4.0",
"uncontrollable": "^4.0.3",
"underscore.string": "^3.3.4"
},
"devDependencies": {
"autoprefixer": "^6.4.1",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"conventional-changelog-cli": "^1.2.0",
"cpy-cli": "^1.0.1",
"css-loader": "^0.25.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"fs-extra": "^0.30.0",
"html-webpack-plugin": "^2.22.0",
"img-loader": "^1.3.1",
"jsontosass-loader": "^0.1.9",
"minimist": "^1.2.0",
"node-sass": "^3.10.0",
"postcss-loader": "^0.13.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^2.8.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.1",
"release-it": "^2.4.3",
"rimraf": "^2.5.4",
"sass-lint": "^1.9.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"through2": "^2.0.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.1",
"webpack-hot-middleware": "^2.12.2"
}
}