-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 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
{
"name": "rocketdex-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:staging": "tsc && vite build --mode staging",
"lint": "eslint ./src/**/*",
"test": "vitest --coverage",
"typecheck": "tsc --noEmit",
"preview": "vite preview"
},
"dependencies": {
"@primer/octicons-react": "19.16.0",
"@primer/react": "37.31.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"@tanstack/react-query": "5.85.9",
"react-router-dom": "7.8.2",
"styled-components": "5.3.11"
},
"devDependencies": {
"@testing-library/cypress": "10.0.3",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"@types/styled-components": "5.1.34",
"@typescript-eslint/eslint-plugin": "8.42.0",
"@typescript-eslint/parser": "8.42.0",
"@vitejs/plugin-react": "5.0.2",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.34.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-primer-react": "8.1.0",
"globals": "^16.3.0",
"jsdom": "26.1.0",
"prettier": "3.6.2",
"typescript": "5.9.2",
"vite": "7.1.4",
"vitest": "3.2.4"
}
}