This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.54 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
{
"name": "microlc_redoc_plugin",
"version": "0.1.2",
"private": true,
"homepage": "./",
"dependencies": {
"@mia-platform/microlc-ui-components": "^0.1.0",
"core-js": "^3.24.1",
"mobx": "^6.6.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"redoc": "^2.0.0-rc.74",
"styled-components": "^5.3.5"
},
"scripts": {
"start": "rescripts start",
"build": "NODE_ENV=production INLINE_RUNTIME_CHUNK=false rescripts build",
"test": "rescripts test",
"lint": "eslint src --ext .js,.jsx",
"coverage": "yarn test --coverage --watchAll=false",
"dev:unit-watch": "yarn test",
"dev:mock-server": "mock-server --delay 200 --watch --require @babel/register",
"dev:styleguide": "styleguidist server",
"dev": "npm-run-all -p dev:** start",
"styleguide:build": "styleguidist build",
"update-docker-version": "sed -i.bck \"s|version=\\\"[0-9]*\\.[0-9]*\\.[0-9]*.*\\\"|version=\\\"${npm_package_version}\\\"|\" Dockerfile",
"version": "npm run update-docker-version && rm -fr Dockerfile.bck && git add Dockerfile",
"prepare": "husky install"
},
"proxy": "http://localhost:3456",
"standard-version": {
"skip": {
"bump": true,
"tag": true
}
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all lint coverage"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/register": "^7.18.9",
"@rescripts/cli": "^0.0.16",
"@staticdeploy/mock-server": "^3.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"enzyme": "^3.11.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.1",
"npm-run-all": "^4.1.5",
"react-styleguidist": "^11.2.0",
"standard-version": "^9.5.0"
}
}