-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (73 loc) Β· 2.93 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
{
"name": "react-template",
"version": "1.0.1",
"description": "React template with TypeScript, ESLint, Prettier, Jest, Husky, and TailwindCSS",
"scripts": {
"start": "echo 'π Starting the app... Please wait.' && npm run build && echo 'β
Build complete. Launching the app...' && node dist/index.js",
"build": "echo 'π¨ Building the app...' && tsc",
"test": "echo 'π§ͺ Running tests...' && jest --config jest.config.cjs --coverage",
"format": "echo 'ποΈ Formatting code... Please wait.' && prettier --write . && echo 'β
Your code is formatted!'",
"lint": "echo 'π§Ή Linting code... Please wait.' && eslint -c eslint.config.js . && echo 'β
Linting complete. Your code is clean!'",
"precommit": "echo 'π Precommit: Linting and testing code...' && npm run lint && npm test",
"pretest": "echo 'π Pretest: Linting code...' && npm run lint",
"watch": "echo 'π Watching files...' && jest --watch",
"debug": "echo 'π Starting the app in debug mode...' && NODE_ENV=development nodemon --inspect src/index.js",
"clean": "echo '𧽠Cleaning up...' && rm -rf ./node_modules ./dist && rm package-lock.json",
"prepare": "husky install # πΆ Setting up Husky",
"docker-clean": "echo 'π§Ή Cleaning up Docker resources...' && docker stop $(docker ps -aq) && docker rm $(docker ps -aq) && docker image prune -af && docker volume prune -f && docker network prune -f && docker builder prune -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jagoda11/react-template"
},
"keywords": [],
"author": "Jagoda11",
"license": "Proprietary",
"bugs": {
"url": "https://github.com/Jagoda11/react-template/issues"
},
"homepage": "https://github.com/Jagoda11/react-template#readme",
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/react-redux": "^7.1.34",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"babel-loader": "^9.2.1",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.2",
"readline-sync": "^1.4.10",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"dependencies": {
"autoprefixer": "^10.4.20",
"axios": "^1.7.9",
"express": "^4.21.2",
"postcss": "^8.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.2.0",
"redux": "^5.0.1",
"tailwindcss": "^4.0.8"
}
}