-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.62 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
{
"name": "integra",
"version": "0.1.0",
"homepage": "https://test.spintegra.sk",
"private": true,
"dependencies": {
"@sentry/react": "^5.22.3",
"@sentry/tracing": "^5.22.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"autoprefixer": "^10.0.2",
"axios": "^0.21.1",
"chokidar-cli": "^2.1.0",
"dayjs": "^1.9.6",
"draft-js": "^0.11.7",
"draft-js-export-html": "^1.4.1",
"gh-pages": "^3.1.0",
"html-to-draftjs": "^1.5.0",
"i18next": "^19.7.0",
"mutationobserver-shim": "^0.3.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.1.8",
"react": "^16.13.1",
"react-datepicker": "^3.3.0",
"react-dom": "^16.13.1",
"react-draft-wysiwyg": "^1.14.5",
"react-ga": "^3.3.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.8.3",
"react-image-gallery": "^1.0.8",
"react-images-upload": "^1.2.8",
"react-pdf": "^5.0.0",
"react-responsive-carousel": "^3.2.10",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-toastify": "^6.2.0",
"source-map-explorer": "^2.5.1",
"tailwindcss": "^2.0.1"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"build:tailwind": "tailwind build src/styles/tailwind.css -o src/styles/tailwind.output.css",
"watch:tailwind": "chokidar 'src/**/*.css' 'src/**/*.scss' --ignore src/styles/tailwind.output.css -c 'npm run build:tailwind'",
"start": "npm-run-all build:tailwind --parallel watch:tailwind start:react",
"prebuild": "run-s build:tailwind",
"build": "react-scripts build",
"start:react": "react-scripts start",
"test": "react-scripts test",
"coverage": "react-scripts test --coverage --watchAll=false",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"enzyme-to-json": "^3.5.0",
"jest": "^24.9.0",
"react-test-renderer": "^16.13.1"
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/src/**/*.{js,jsx}",
"<rootDir>/src/*.{js,jsx}"
],
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 60,
"lines": 60,
"statements": 60
}
},
"coverageReporters": [
"text",
"html"
]
}
}