-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.71 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
{
"name": "podcast-player",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^6.4.3",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.1",
"@mui/lab": "^5.0.0-alpha.75",
"@mui/material": "^5.5.3",
"@mui/styles": "^5.5.3",
"@sentry/react": "^7.17.2",
"@sentry/tracing": "^7.17.2",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@types/react": "^17.0.51",
"@types/react-dom": "^18.0.7",
"axios": "^0.21.4",
"jwt-decode": "^3.1.2",
"moment": "^2.29.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"react-scripts": "^4.0.3",
"sanitize-html": "^2.7.0",
"typescript": "^4.8.4",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@testing-library/cypress": "^8.0.3",
"@types/react-router-dom": "^5.3.3",
"@types/sanitize-html": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"concurrently": "^7.0.0",
"cypress": "^10.11.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.6.1",
"stylelint": "^14.14.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^29.0.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"server": "npm run start:dev --prefix backend",
"dev": "concurrently \"npm run server\" \"npm start\"",
"postinstall": "cd backend && npm install",
"e2e": "cypress open",
"lint": "npm run lint:prettier && npm run lint:stylelint && npm run lint:eslint",
"lint:format": "npm run lint:prettier:fix && npm run lint:stylelint:fix && npm run lint:eslint:fix",
"lint:eslint": "eslint \"src/**/*.{js,jsx,ts,tsx,json}\"",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"lint:prettier": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:stylelint": "stylelint \"**/*.css\"",
"lint:stylelint:fix": "npm run lint:stylelint -- --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"moduleNameMapper": {
"^@/(.+)": "<rootDir>/src/$1"
}
}
}