-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
115 lines (115 loc) · 4.26 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
106
107
108
109
110
111
112
113
114
115
{
"name": "@coreui/coreui-free-react-admin-template",
"version": "2.1.6",
"description": "CoreUI React Open Source Bootstrap 4 Admin Template",
"author": "Łukasz Holeczek",
"copyright": "Copyright 2018 creativeLabs Łukasz Holeczek",
"license": "MIT",
"private": true,
"homepage": "./",
"repository": {
"type": "git",
"url": "[email protected]:coreui/coreui-free-react-admin-template.git"
},
"dependencies": {
"@coreui/coreui": "^2.1.9",
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.2.0",
"@coreui/icons": "0.3.0",
"@coreui/react": "~2.1.5",
"@nivo/bar": "^0.52.0",
"@nivo/calendar": "^0.52.0",
"@nivo/chord": "^0.52.0",
"@nivo/circle-packing": "^0.52.0",
"@nivo/legends": "^0.52.0",
"@nivo/pie": "^0.52.0",
"@nivo/radar": "^0.52.0",
"@nivo/treemap": "^0.52.0",
"array-sort": "^1.0.0",
"bootstrap": "^4.3.1",
"bootstrap-daterangepicker": "^3.0.3",
"chai": "^4.2.0",
"chart.js": "^2.8.0",
"classnames": "^2.2.6",
"codecov": "^3.2.0",
"core-js": "^2.6.5",
"d3": "^5.9.2",
"dateformat": "^3.0.3",
"dns": "^0.2.2",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"flag-icon-css": "^3.3.0",
"flux": "^3.1.3",
"font-awesome": "^4.7.0",
"graph-app-kit": "^1.0.4",
"group-array": "^0.3.3",
"history": "4.7.2",
"identity-obj-proxy": "^3.0.0",
"jquery": "^3.3.1",
"lodash": "^4.17.11",
"matrix-utilities": "^1.2.4",
"moment": "^2.23.0",
"neo4j-driver": "^1.7.3",
"node-sass": "^4.11.0",
"object-array-converter": "^1.0.1",
"prop-types": "^15.7.2",
"react": "^16.8.5",
"react-app-polyfill": "^0.2.2",
"react-bootstrap-daterangepicker": "^4.1.0",
"react-chartjs-2": "^2.7.4",
"react-dom": "^16.8.5",
"react-load-script": "0.0.6",
"react-loadable": "^5.5.0",
"react-router-config": "^4.4.0-beta.8",
"react-router-dom": "~4.3.1",
"react-table": "^6.9.2",
"react-test-renderer": "^16.8.5",
"react-transition-group": "2.5.2",
"react-treebeard": "^2.1.0",
"reactstrap": "^7.1.0",
"readline": "^1.3.0",
"request": "^2.88.0",
"simple-line-icons": "^2.4.1",
"simplebar": "^2.6.1",
"string-to-color": "^2.0.1",
"tinygradient": "^0.4.3"
},
"devDependencies": {
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"react-scripts": "^2.1.8"
},
"scripts": {
"precommit": "lint-staged",
"pretty": "prettier --write --tab-width 4 \"src/api/**/*.js\" && prettier --write --tab-width 4 \"src/tests/**/*.js\" && prettier --write --tab-width 4 \"src/views/**/*.js\"",
"build-css": "node-sass-chokidar --include-path ./node_modules ./src/scss -o ./src/scss",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./node_modules ./src/scss -o ./src/scss --watch --recursive",
"start-js": "react-scripts start",
"dashboard": "react-scripts start",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"test-dashboard": "react-scripts test --coverage --collectCoverageFrom=src/**/*.js --collectCoverageFrom=!src/**/index.js --collectCoverageFrom=!src/polyfill.js --env=jsdom",
"install-dashboard": "echo 'Step 1/2: Install Graph App Kit' && npm install graph-app-kit --registry https://neo.jfrog.io/neo/api/npm/npm && echo 'Step 2/2: Install npm packages' && npm install",
"update-dashboard": "echo 'Step 1/5: Get Graph App Kit to prevent uninstall errors' && npm install graph-app-kit --registry https://neo.jfrog.io/neo/api/npm/npm && echo 'Step 2/5: Install all packages' && npm install && echo 'Step 3/5: Uninstall Graph App Kit to enable npm update' && npm uninstall graph-app-kit && echo 'Step 4/5: Update packages' && npm update && echo 'Step 5/5: Reinstall Graph App Kit' && npm install graph-app-kit --registry https://neo.jfrog.io/neo/api/npm/npm"
},
"lint-staged": {
"*.js": [
"prettier --tab-width 4 --write",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 9",
"not op_mini all"
]
}