-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.42 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
{
"name": "react-pokeapi",
"version": "2.0.0",
"license": "AGPL-3.0",
"description": "Simple application made with React, Redux, etc to interact with the PokeApi v2",
"homepage": "https://dbuggerx.github.io/react-pokeapi",
"private": true,
"engines": {
"node": ">=20.10.0"
},
"packageManager": "pnpm@8.12.1",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@reduxjs/toolkit": "^2.0.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"pokemon": "^2.3.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-redux": "^9.0.4",
"react-router-dom": "6",
"react-scripts": "5.0.1",
"react-transition-group": "^4.4.2",
"typescript": "^4.6.4",
"web-vitals": "^3.0.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test-debug": "NODE_OPTIONS='--inspect-brk' npm test -- --runInBand",
"eject": "react-scripts eject",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"analyze": "cross-env ANALYZE=true craco build",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@craco/craco": "^6.4.3",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/node-logger": "^6.4.22",
"@storybook/preset-create-react-app": "^4.1.0",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.13",
"@types/react-transition-group": "^4.4.4",
"@types/testing-library__jest-dom": "^5.14.3",
"cross-env": "^7.0.3",
"msw": "^0.47.4",
"pokenode-ts": "^1.13.1",
"sass": "^1.51.0",
"webpack-bundle-analyzer": "^4.5.0"
}
}