-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.97 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
{
"name": "clean-reactive-architecture-react-rtk",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write .",
"test": "npm run test:format && npm run test:types && npm run test:lint && npm run test:deps && npm run test:unit",
"test:types": "tsc --build --noEmit",
"test:unit": "vitest run",
"test:unit:watch": "vitest watch --test-timeout 0",
"test:deps": "depcruise --config ./dependency-cruiser.config.cjs ./src",
"test:format": "prettier --check .",
"test:lint": "eslint --format=codeframe --max-warnings=0 ./",
"deps:graph": "depcruise --config ./dependency-cruiser.config.cjs ./src --include-only '^src' --exclude '(.factory|test(s?)|spec(s?)|types|utils)' --collapse 5 --output-type dot | dot -T svg > ./dependency-graph.svg"
},
"dependencies": {
"@esfx/async-deferred": "^1.0.0",
"@eslint/js": "^9.17.0",
"@reduxjs/toolkit": "^2.12.0",
"@tailwindcss/vite": "^4.3.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react-swc": "^3.5.0",
"daisyui": "^5.5.19",
"dependency-cruiser": "^16.10.0",
"eslint": "^9.17.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"factory-t": "^0.3.1",
"globals": "^15.14.0",
"jiti": "^2.4.2",
"jsdom": "^26.0.0",
"msw": "^2.7.1",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.3.0",
"tailwindcss": "^4.3.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vitest": "^3.0.4"
}
}