forked from psono/psono-admin-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.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
{
"name": "psono-admin-client",
"version": "1.0.0",
"description": "Psono Admin Panel to manage users",
"main": "index.js",
"private": true,
"repository": "git@gitlab.com:psono/psono-admin-client.git",
"author": "Sascha Pfeiffer",
"license": "Apache-2.0",
"homepage": "/portal",
"dependencies": {
"@date-io/date-fns": "^2.4.0",
"@material-ui/core": "^4.9.2",
"@material-ui/icons": "^4.9.1",
"axios": "^0.19.2",
"chartist": "^0.10.1",
"chartist-plugin-axistitle": "^0.0.4",
"classnames": "^2.2.6",
"clientjs": "^0.1.11",
"ecma-nacl": "^2.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"font-awesome": "^4.7.0",
"husky": "^0.14.3",
"i18next": "^15.1.0",
"i18next-browser-languagedetector": "^3.0.1",
"i18next-xhr-backend": "^2.0.1",
"js-sha256": "^0.9.0",
"js-sha512": "^0.7.1",
"lint-staged": "^7.3.0",
"material-table": "^1.57.2",
"moment": "^2.24.0",
"moment-timezone": "^0.5.25",
"npm-run-all": "^4.1.1",
"perfect-scrollbar": "^1.3.0",
"prettier": "^1.11.0",
"react": "^16.12.0",
"react-chartist": "^0.13.1",
"react-dom": "^16.12.0",
"react-fontawesome": "^1.6.1",
"react-google-maps": "^9.4.5",
"react-i18next": "^10.9.0",
"react-moment": "^0.9.2",
"react-popper": "^0.10.4",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"react-spinners": "^0.8.0",
"react-swipeable-views": "^0.12.13",
"react-test-renderer": "^16.12.0",
"react-timeout": "^1.0.1",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"uuid-js": "^0.7.5"
},
"lint-staged": {
"linters": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write --tab-width 4",
"git add"
]
}
},
"jest": {
"coverageReporters": [
"html",
"text",
"cobertura",
"text-summary"
]
},
"scripts": {
"precommit": "lint-staged",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {}
}