forked from Raathigesh/dazzle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 3.36 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
104
105
{
"name": "react-dazzle",
"version": "1.4.0",
"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 --mode production --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 --mode development -d --hot --progress",
"lint": "npm run lint-js",
"lint-js": "eslint --fix --ext .js,.jsx .",
"test": "babel-node node_modules/mocha/bin/_mocha -- ./test/entry.js ./test/**/*.spec.js",
"test:watch": "babel-node node_modules/mocha/bin/_mocha -- ./test/entry.js ./test/**/*.spec.js --watch",
"cover": "nyc babel-node node_modules/mocha/bin/_mocha -- ./test/entry.js ./test/**/*.spec.js",
"report-cover": "nyc babel-node node_modules/mocha/bin/_mocha -- ./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-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^5.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bootstrap": "^4.0.0",
"chai": "^4.1.2",
"commitizen": "^2.7.6",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"express": "^4.16.3",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.1.0",
"http-proxy": "^1.16.2",
"istanbul": "^0.4.5",
"jsdom": "^11.6.0",
"json-loader": "^0.5.7",
"mocha": "^5.0.0",
"nyc": "^13.0.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^4.0.0",
"react-modal": "^3.3.2",
"rimraf": "^2.6.2",
"semantic-release": "^15.1.4",
"sinon": "^4.4.9",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.3",
"stylelint": "^9.1.3",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.9",
"webpack-hot-middleware": "^2.21.2",
"winston": "^2.4.1"
},
"dependencies": {
"immutability-helper": "^2.3.1",
"jquery": "^3.3.1",
"popper.js": "^1.14.1",
"prop-types": "^15.5.10",
"react-dnd": "^2.6.0",
"react-dnd-html5-backend": "^2.6.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
}
}