-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
70 lines (70 loc) · 2.2 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
{
"name": "custom-icon-badges-client",
"version": "0.12.1",
"description": "Allows users to more easily use their own icons and logos in shields.io badges",
"author": "Jonah Lawrence",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DenverCoder1/custom-icon-badges.git"
},
"bugs": {
"url": "https://github.com/DenverCoder1/custom-icon-badges/issues"
},
"dependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"bootstrap": "^5.3.3",
"react": "^18.3.1",
"react-bootstrap": "^2.10.5",
"react-dom": "^18.3.1",
"react-github-btn": "^1.4.0",
"react-scripts": "^5.0.1",
"typescript": "^5.6.3"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react": "^7.37.2",
"react-test-renderer": "^18.3.1",
"sass": "^1.80.6"
},
"scripts": {
"start-client": "react-scripts start",
"start": "cd server && yarn start",
"build": "yarn install && react-scripts build && (cd server && yarn build)",
"test": "react-scripts test --transformIgnorePatterns 'node_modules/(?!(react-github-btn|react-bootstrap))'",
"eject": "react-scripts eject",
"lint": "yarn eslint . --ext .ts,.tsx && cd server && yarn lint",
"lint:fix": "yarn eslint . --ext .ts,.tsx --fix && cd server && yarn lint:fix",
"dev": "yarn lint && yarn build && yarn start",
"install-all": "yarn install && cd server && yarn install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"autoprefixer": "10.4.5"
}
}