-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.56 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
{
"name": "travel-bingo",
"homepage": "https://travel-bingo.netlify.app",
"version": "1.33.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^5.4.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^15.0.6",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.104",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"antd": "^5.20.0",
"i18next": "^23.12.2",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.5.2",
"javascript-time-ago": "^2.5.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.1",
"react-markdown": "^9.0.1",
"react-scripts": "5.0.1",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"prepare": "husky",
"start:local": "PUBLIC_URL=/ HOST=0.0.0.0 npm start",
"start": "DEV_MODE=true PUBLIC_URL=/ react-scripts start",
"build": "react-scripts build",
"lint": "npx eslint src",
"lint:fix": "npx eslint src --fix",
"test": "react-scripts test",
"test:coverage": "CI=true npm test -- --env=jsdom --coverage --verbose",
"eject": "react-scripts eject",
"release": "semantic-release",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"serve": "npm run build && serve -s build"
},
"coverageThreshold": {
"global": {
"statements": 30,
"branches": 30,
"functions": 30,
"lines": 30
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rpidanny/eslint-config-typescript": "^1.4.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.3",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"commitlint": "^19.3.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"gh-pages": "^6.1.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"react-router-dom": "^6.26.0",
"semantic-release": "^24.0.0",
"serve": "^14.2.3"
}
}