-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.08 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "Minimalistic boilerplate to quick-start React.js development in TypeScript, optimized for blazing-fast performance with Bun & Vite 🚀",
"author": "Raja Rakotonirina <raja.rakoto7@gmail.com>",
"license": "MIT",
"type": "module",
"files": ["dist"],
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/RajaRakoto/react-boilerplate.git"
},
"homepage": "https://github.com/RajaRakoto/react-boilerplate#readme",
"bugs": "https://github.com/RajaRakoto/react-boilerplate/issues",
"engines-annotation": "Require React 18.2.0 or higher",
"engines": {
"react": ">=18.2.0"
},
"keywords": [
"typescript",
"reactjs",
"react",
"vitejs",
"vite",
"bunjs",
"bun",
"minimalist",
"boilerplate",
"template",
"starter"
],
"scripts": {
"preview": "vite preview",
"clean": "rimraf build dist coverage playwright-report",
"dev": "vite",
"build": "bun run clean && tsc -b && rimraf vite.config.js && vite build",
"test:unit": "bun test ./tests/*.test.ts",
"test:unit:watch": "bun test --watch ./tests/*.test.ts",
"test:e2e": "rimraf playwright-report && playwright test ./e2e/*.spec.ts",
"biome:start": "biome start",
"biome:stop": "biome stop",
"biome:fix": "biome check --fix .",
"biome:unsafe": "biome check --fix --unsafe .",
"eslint": "eslint --config .eslintrc.cjs --report-unused-disable-directives --max-warnings 0 .",
"prettier": "prettier --config .prettierrc --write .",
"backups": "grunt backups",
"pkg-check": "depcheck",
"pkg-upgrade": "ncu --interactive --format group --packageManager bun",
"versioning": "ungit",
"npm-version:major": "npm version major",
"npm-version:minor": "npm version minor",
"npm-version:patch": "npm version patch",
"nvm": "nvm use",
"script:sass-charset": "cd scripts && bun sass-charset.js"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"zustand": "^4.5.5"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@playwright/test": "^1.47.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bun": "latest",
"@types/eslint": "8.56.10",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.20",
"depcheck": "^1.4.7",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"grunt-cli": "^1.5.0",
"grunt-contrib-compress": "^2.0.0",
"jest": "^29.7.0",
"load-grunt-tasks": "^5.1.0",
"npm-check-updates": "^17.1.1",
"playwright": "^1.47.0",
"postcss": "^8.4.45",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"rimraf": "^6.0.1",
"sass": "1.77.6",
"tailwindcss": "3.4.10",
"ts-jest": "^29.2.5",
"typescript": "5.5.4",
"ungit": "^1.5.27",
"vite": "5.4.3",
"vite-tsconfig-paths": "^5.0.1"
}
}