-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "react-blocks",
"version": "1.1.4",
"description": "A higher-level react component to manage complex layouts using CSS flexbox.",
"main": "lib/index",
"scripts": {
"start": "node server.js",
"build": "scripts/build.sh",
"deploy": "scripts/deploy.sh",
"lint": "eslint src",
"test": "npm run lint && karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whoisandie/react-blocks.git"
},
"author": "whoisandie",
"license": "MIT",
"bugs": {
"url": "https://github.com/whoisandie/react-blocks/issues"
},
"homepage": "https://github.com/whoisandie/react-blocks#readme",
"dependencies": {
"object-assign": "^4.0.1",
"react": "^0.14.3"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.24",
"babel-eslint": "^4.1.2",
"babel-loader": "^5.3.2",
"chai": "^3.3.0",
"css-loader": "^0.19.0",
"es5-shim": "^4.1.13",
"eslint": "^1.4.3",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.3.2",
"gh-pages": "^0.4.0",
"html-webpack-plugin": "^1.6.1",
"karma": "^0.13.10",
"karma-chai": "^0.1.0",
"karma-chai-plugins": "^0.6.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-webpack": "^1.7.0",
"less": "^2.5.1",
"less-loader": "^2.2.1",
"mocha": "^2.3.3",
"phantomjs": "^1.9.18",
"react-dom": "^0.14.3",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.12.3",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.11.0",
"webpack-merge": "^0.2.0"
}
}