-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
147 lines (147 loc) · 4.15 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "islaamify360",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "0.21.1",
"final-form": "4.20.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-final-form": "6.5.2",
"react-h5-audio-player": "3.7.1",
"react-helmet-async": "1.0.7",
"react-infinite-scroll-hook": "3.0.0",
"react-numeric-captcha": "1.0.3",
"react-player": "2.7.2",
"react-query": "3.5.16",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.1",
"react-select": "3.2.0",
"react-share": "4.3.1"
},
"devDependencies": {
"@tailwindcss/line-clamp": "0.1.0",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.3",
"@types/jest": "26.0.20",
"@types/node": "14.14.22",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/react-router-dom": "5.1.7",
"@types/react-select": "3.1.2",
"@types/react-test-renderer": "17.0.0",
"@types/testing-library__jest-dom": "5.9.5",
"autoprefixer": "10.2.3",
"cross-env": "7.0.3",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.8",
"lint-staged": "10.5.3",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.2.4",
"postcss-cli": "^8.3.1",
"postcss-nested": "^5.0.3",
"prettier": "2.2.1",
"react-test-renderer": "17.0.1",
"serve": "11.3.2",
"tailwindcss": "^2.0.2",
"ts-node": "9.1.1",
"typescript": "4.1.3",
"workbox-background-sync": "^6.0.2",
"workbox-broadcast-update": "^6.0.2",
"workbox-cacheable-response": "^6.0.2",
"workbox-core": "^6.0.2",
"workbox-expiration": "^6.0.2",
"workbox-google-analytics": "^6.0.2",
"workbox-navigation-preload": "^6.0.2",
"workbox-precaching": "^6.0.2",
"workbox-range-requests": "^6.0.2",
"workbox-routing": "^6.0.2",
"workbox-strategies": "^6.0.2",
"workbox-streams": "^6.0.2"
},
"scripts": {
"__comment1__start__": "start-script",
"start": "npm-run-all start:tw -l -p start:p:*",
"start:tw": "postcss ./src/assets/css/tailwind.src.css -o ./src/assets/css/tailwind.css",
"start:p:w-tw": "onchange 'tailwind.config.js' 'src/**/*.css' -e './src/assets/css/tailwind.css' -- npm run start:tw",
"start:p:react": "react-scripts start",
"__comment1__end__": "start-script",
"test": "react-scripts test a",
"eject": "react-scripts eject",
"start:prod": "npm run build && serve -s build",
"check:ts": "tsc --noEmit",
"eslint": "eslint --ext js,ts,tsx",
"prettier": "prettier --write src",
"lint": "npm run eslint src",
"lint:fix": "npm run eslint --fix src && npm run prettier",
"__comment2__start__": "build-script",
"build": "run-s build:** -l",
"build:a:tw": "cross-env NODE_ENV=production npm run start:tw",
"build:b:react": "react-scripts build",
"__comment2__end__": "build-script"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"npm": ">=6.14.8",
"node": ">=14.15.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"npm run lint:fix"
],
"*.{md,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run check:ts && lint-staged"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*/Loadable.{js,jsx,ts,tsx}",
"!src/**/*/types.{ts,tsx}",
"!src/index.{ts,tsx}",
"!src/serviceWorker.ts"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/app/api",
"<rootDir>/src/app/axios",
"<rootDir>/src/assets",
"<rootDir>/src/firebase-data",
"<rootDir>/src/app/router",
"async.tsx",
"queries.tsx",
"test-utils.tsx",
"LayoutContainer.tsx"
],
"coverageReporters": [
"lcov",
"text-summary"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}