-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.4 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
{
"name": "react-dashboard",
"version": "0.0.0",
"description": "Charting dashboard built with react.js",
"main": "app/scripts/main.js",
"scripts": {
"test": "./node_modules/karma/bin/karma start conf/karma.conf.js --single-run",
"test:watch": "./node_modules/karma/bin/karma start conf/karma.conf.js",
"test:coverage": "./node_modules/karma/bin/karma start conf/karma.coverage.conf.js --single-run",
"test:ci": "./node_modules/karma/bin/karma start conf/karma.ci.conf.js --single-run",
"start": "./node_modules/.bin/webpack-dev-server --config conf/webpack.config.js --hot --progress --colors --inline --content-base ./build",
"build": "./node_modules/.bin/webpack --config conf/webpack.production.js",
"build:gh": "npm run build && node ./build-gh-pages.js && rm -r ./dist"
},
"dependencies": {
"react": "~0.13.2"
},
"devDependencies": {
"ajax": "0.0.4",
"autoprefixer-loader": "^1.2.0",
"babel": "^5.1.10",
"babel-core": "^4.7.8",
"babel-eslint": "^2.0.2",
"babel-loader": "^5.0.0",
"baobab": "^1.1.0",
"baobab-react": "^0.1.1",
"browser-request": "^0.3.3",
"classnames": "^1.2.1",
"css-loader": "^0.9.1",
"eslint": "^0.17.1",
"eslint-loader": "^0.7.0",
"extract-text-webpack-plugin": "^0.3.8",
"file-loader": "^0.8.1",
"font-awesome": "^4.3.0",
"gh-pages": "^0.2.0",
"html-webpack-plugin": "^1.1.0",
"isparta": "^2.2.0",
"isparta-instrumenter-loader": "^0.1.1",
"karma": "^0.12.31",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.2.7",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^1.0.2",
"karma-notify-reporter": "^0.1.1",
"karma-phantomjs-launcher": "^0.1.4",
"karma-webpack": "^1.5.0",
"less": "^2.4.0",
"less-loader": "^2.1.0",
"lodash": "^3.3.1",
"react-dnd": "^1.0.0-alpha",
"react-grid-layout": "^0.8.2",
"react-hot-loader": "^1.2.3",
"sass-loader": "^0.4.2",
"style-loader": "^0.8.3",
"url-loader": "^0.5.5",
"webpack": "^1.7.3",
"webpack-dev-server": "^1.7.0"
},
"repository": {
"type": "git",
"url": "git@github.com:andrewhickey/react-dashboard.git"
},
"keywords": [
"react",
"dashboard"
],
"author": "andrewhickey@live.co.uk",
"license": "ISC",
"bugs": {
"url": "https://github.com/andrewhickey/react-dashboard/issues"
},
"homepage": "https://github.com/andrewhickey/react-dashboard"
}