-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 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
{
"name": "react-plan",
"version": "1.1.0",
"description": "A React Responsive Layout Library based on flexbox.",
"main": "dist/index.js",
"scripts": {
"dist": "webpack --config webpack.dist.js",
"dev": "webpack-dev-server --config webpack.dev.js --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/111StudioKK/react-plan.git"
},
"keywords": [
"React",
"Flexbox",
"Responsive",
"Layout"
],
"author": "Florian Didron <florian@111studio.jp> (http://www.111studio.jp/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/111StudioKK/react-plan/issues"
},
"homepage": "https://github.com/111StudioKK/react-plan#readme",
"devDependencies": {
"babel-core": "6.17.0",
"babel-eslint": "6.0.2",
"babel-loader": "6.2.4",
"babel-plugin-typecheck": "3.8.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.16.0",
"css-loader": "0.23.1",
"eslint": "2.7.0",
"eslint-plugin-react": "4.3.0",
"file-loader": "0.8.5",
"html-loader": "0.4.3",
"html-webpack-plugin": "2.15.0",
"json-loader": "0.5.4",
"less": "2.6.1",
"less-loader": "2.2.3",
"markdown-loader": "0.1.7",
"react-hot-loader": "1.3.0",
"style-loader": "0.13.1",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.1"
},
"peerDependencies": {
"react": "^15.1.0",
"react-dom": "^15.1.0"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
]
},
"dependencies": {
"custom-event-polyfill": "0.3.0"
}
}