-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.58 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
{
"name": "sign_document",
"version": "0.1.0",
"private": true,
"homepage": "/",
"dependencies": {
"@testing-library/jest-dom": "^5.16.2",
"abortcontroller-polyfill": "^1.7.3",
"bootstrap": "4.4.1",
"bootstrap-icons": "^1.8.1",
"bs-stepper": "^1.7.0",
"buffer": "^6.0.3",
"file-saver": "^2.0.5",
"filesaver.js": "^1.3.4",
"immutable": "^4.0.0-rc.12",
"jquery": "3.5.1",
"moment": "^2.29.1",
"patch-package": "^8.0.0",
"pdfjs-dist": "^4.2.67",
"popper.js": "1.16.1",
"prop-types": "15.7.2",
"query-string": "^7.1.1",
"react": "16.13.0",
"react-app-polyfill": "1.0.6",
"react-bootstrap": "^1.6.1",
"react-dom": "16.13.0",
"react-helmet-async": "^1.3.0",
"react-intl": "3.12.1",
"react-redux": "7.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "^5.0.1",
"react-xml-viewer": "^1.3.0",
"redux": "4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "2.3.0",
"sass": "^1.49.9",
"stream": "0.0.2",
"typescript": "3.8.3"
},
"overrides": {
"@svgr/webpack": "$@svgr/webpack"
},
"scripts": {
"css": ".\\node_modules\\.bin\\sass ./style/custom.scss ./public/style/custom.css",
"start": "react-scripts start",
"build": "./node_modules/.bin/sass ./style/custom.scss ./public/style/custom.css && react-scripts build",
"test": "react-scripts test",
"testOld": "react-scripts test --watchAll=false --coverage=true",
"tests": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "patch-package"
},
"jest": {
"coverageReporters": [
"html",
"text",
"cobertura"
],
"moduleNameMapper": {
"pdfjs-dist": "<rootDir>/src/modules/utils/pdfjs-dist.webpack.fake.js"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browser": {
"buffer": false
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"ie 11",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@svgr/webpack": "^6.3.1",
"@testing-library/dom": "^8.1.0",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^7.2.1",
"@types/fetch-mock": "^7.3.3",
"@types/jest": "^27.4.1",
"extract-react-intl-messages": "^4.1.1",
"fetch-mock": "^9.11.0",
"jest-fetch-mock": "^3.0.3",
"node-fetch": "^2.6.1"
},
"babel": {
"presets": [
"react-app"
],
"plugins": [
"@babel/plugin-transform-arrow-functions"
]
}
}