forked from Raathigesh/dazzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.29 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
{
"name": "react-dazzle",
"version": "1.2.4",
"description": "The simple yet flexible dashbording solution for React",
"license": "MIT",
"main": "dist/lib.js",
"style": "lib/style/style.css",
"scripts": {
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js -p",
"clean": "rimraf dist coverage",
"start": "cross-env NODE_ENV=production node server/node-server.js",
"dev": "cross-env NODE_ENV=development webpack-dev-server -d --inline --hot --progress --no-info",
"lint": "npm run lint-js",
"lint-js": "eslint .",
"test": "babel-node ./node_modules/istanbul/lib/cli.js --include-all-sources cover node_modules/mocha/bin/_mocha -- --require ./test/entry.js ./test/**/*.spec.js",
"test:watch": "babel-node ./node_modules/istanbul/lib/cli.js --include-all-sources cover node_modules/mocha/bin/_mocha -- --require ./test/entry.js ./test/**/*.spec.js --watch",
"cover": "babel-node ./node_modules/istanbul/lib/cli.js --include-all-sources cover node_modules/mocha/bin/_mocha -- --require ./test/entry.js ./test/**/*.spec.js",
"report-cover": "babel-node ./node_modules/istanbul/lib/cli.js --include-all-sources cover node_modules/mocha/bin/_mocha -- --require ./test/entry.js ./test/**/*.spec.js && codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"commit": "git-cz"
},
"keywords": [
"react",
"dashboard",
"react-component",
"widgets",
"react-dazzle",
"analytics-dashboard",
"analytics"
],
"repository": {
"type": "git",
"url": "https://github.com/Raathigesh/Dazzle.git"
},
"bugs": {
"url": "https://github.com/Raathigesh/Dazzle/issues"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.6.5",
"babel-core": "^6.4.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"bootstrap": "^3.3.6",
"chai": "^3.4.0",
"commitizen": "^2.7.6",
"cross-env": "^1.0.7",
"css-loader": "^0.23.0",
"cz-conventional-changelog": "^1.1.5",
"enzyme": "^2.2.0",
"eslint": "2.5.2",
"eslint-config-airbnb": "^6.2.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^4.2.0",
"express": "^4.13.3",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^2.9.0",
"http-proxy": "^1.12.1",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "^8.1.0",
"json-loader": "^0.5.3",
"mocha": "^2.3.4",
"react": "^0.14.0",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0",
"react-hot-loader": "^1.3.0",
"react-modal": "^1.1.1",
"rimraf": "^2.4.3",
"semantic-release": "^4.3.5",
"sinon": "^1.17.3",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.0",
"stylelint": "^5.2.1",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.6.4",
"winston": "^2.1.1"
},
"dependencies": {
"react-dnd": "=2.1.4",
"react-dnd-html5-backend": "=2.1.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
}
}