-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
{
"name": "react-randomizer",
"version": "1.1.0",
"description": "Web tool to generate random lists of Pokémon according to a variety of filters",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/erezushi/React-Pokemon-Generator"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@erezushi/pokemon-randomizer": "^1.13.4",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"animate.css": "^4.1.1",
"chance": "^1.1.11",
"eventemitter3": "^5.0.1",
"lodash": "^4.17.21",
"pokedex-promise-v2": "^4.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.22.3",
"react-virtuoso": "^4.7.8",
"romans": "^2.0.15",
"sweetalert2": "^11.10.7",
"typescript": "^4.9.5",
"uuid": "^9.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"depcheck": "depcheck"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"airbnb"
]
},
"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",
"@types/chance": "^1.1.6",
"@types/lodash": "^4.17.0",
"@types/react": "^18.2.75",
"@types/react-dom": "^18.2.24",
"@types/romans": "^2.0.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-preset-react-app": "^10.0.1",
"depcheck": "^1.4.7",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"react-scripts": "^5.0.1"
}
}