This repository was archived by the owner on Sep 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.71 KB
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
{
"name": "console",
"version": "2.0.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"prop-types": "^15.8.1",
"ra-data-json-server": "^3.19.6",
"ra-data-simple-rest": "^3.19.6",
"ra-i18n-polyglot": "^3.19.6",
"ra-language-english": "^3.19.6",
"react": "^17.0.2",
"react-admin": "^3.19.6",
"react-dom": "^17.0.2",
"react-final-form": "^6.5.7",
"react-scripts": "5.0.0",
"web-vitals": "^2.1.0"
},
"scripts": {
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"release": "git tag -a v$npm_package_version && git push --tags",
"bump": "yarn bump:patch",
"bump:patch": "yarn version patch && git add ./package.json",
"bump:minor": "yarn version minor && git add ./package.json",
"bump:major": "yarn version major && git add ./package.json",
"bump:premajor": "yarn version prerelease && git add ./package.json",
"prepare": "husky install"
},
"repository": "https://github.com/rigami/console",
"author": "Danilkinkin <Danilkinkin@gmail.com>",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "yarn@3.1.1",
"devDependencies": {
"git-branch-is": "^4.0.0",
"husky": "^7.0.4"
}
}