-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.34 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.34 KB
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
{
"name": "pokemon-react-app",
"version": "1.0.0",
"homepage": "https://Jagoda11.github.io/pokemon-react-app",
"description": "Pokemon app built with React, Redux, Typescript and TailwindCSS.",
"main": "src/index.tsx",
"scripts": {
"start": "echo '🚀 Starting the app...' && webpack serve --config webpack.config.cjs && echo '🌟✨ App is up and running! Visit http://localhost:3002 ✨'",
"build": "echo '🔨 Building the app...' && webpack --config webpack.config.cjs && echo '🏗️✨ Build completed! Your app is ready! ✨'",
"test": "echo '🧪 Running tests...' && jest --config jest.config.cjs --coverage --verbose",
"format": "echo '🖋️ Formatting code...' && prettier --write . && echo '✨🎨 Formatting completed! Your code is now beautifully formatted! ✨'",
"lint": "echo '🧹 Linting code...' && eslint . && echo '✅ Linting completed!'",
"lint:fix": "echo '🛠 Fixing lint issues...' && eslint . --fix && echo '✅ Linting fixes applied!'",
"precommit": "echo '🔒 Precommit: Linting and testing code...' && npm run lint && npm test",
"watch": "echo '👀 Watching files...' && jest --watch",
"debug": "echo '🐞 Starting the app in debug mode...' && NODE_ENV=development nodemon --inspect src/index.tsx",
"clean": "echo '🧽 Cleaning up...' && rm -rf ./node_modules ./dist ./coverage && rm package-lock.json && npm cache clean --force",
"postinstall": "echo '📦 Dependencies installed successfully!🥳'"
},
"author": "Jagoda11",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.1.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/react-redux": "^7.1.34",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"gh-pages": "^6.3.0",
"html-webpack-plugin": "^5.6.6",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"react-refresh": "^0.18.0",
"readline-sync": "^1.4.10",
"style-loader": "^4.0.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3",
"whatwg-fetch": "^3.6.20"
},
"dependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"autoprefixer": "^10.4.24",
"axios": "^1.13.4",
"express": "^5.2.1",
"postcss": "^8.5.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-redux": "^9.2.0",
"react-router-dom": "^7.13.0",
"redux": "^5.0.1",
"tailwindcss": "^4.1.18"
}
}