-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.98 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
{
"name": "rokka-dashboard",
"version": "1.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rokka-io/rokka-dashboard.git"
},
"engines": {
"node": "14"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"ajv": "^6.12.6",
"brace": "^0.11.1",
"classnames": "^2.3.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"format-number": "^3.0.0",
"highcharts": "^6.1.0",
"husky": "^1.3.1",
"jest-emotion": "^9.2.11",
"jsoneditor": "^9.9.2",
"jsoneditor-react": "^3.1.2",
"lint-staged": "^8.2.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"node-sass": "^4.14.1",
"prettier": "1.18.2",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-calendar-component": "^2.0.0",
"react-click-outside": "^3.0.1",
"react-color": "^2.19.3",
"react-copy-to-clipboard": "^5.1.0",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^5.0.1",
"react-dnd-test-backend": "^5.0.1",
"react-dom": "^16.14.0",
"react-dropzone": "^7.0.1",
"react-highcharts": "^16.1.0",
"react-image-crop": "^6.0.18",
"react-json-prettify": "^0.2.0",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"react-scripts": "2.1.0",
"react-select": "^5.7.0",
"react-tabs": "^4.2.1",
"react-test-renderer": "^16.14.0",
"react-transition-group": "^2.9.0",
"rokka": "^3.11.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prettier": "prettier --write '{src/**/**,.}/*.{js,json,css,md,yml}'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,yml}": [
"prettier --write",
"git add"
]
}
}