-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.13 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.13 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
81
82
83
84
85
86
87
{
"name": "moon-cheese",
"private": true,
"version": "0.3.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/hacks-team/moon-cheese.git"
},
"author": "hacks-team",
"license": "MIT",
"homepage": "https://github.com/hacks-team/moon-cheese",
"bugs": {
"url": "https://github.com/hacks-team/moon-cheese/issues"
},
"keywords": [
"moon-cheese",
"react",
"vite",
"frontend"
],
"contributors": [
{
"name": "minr2kb",
"url": "https://github.com/minr2kb"
},
{
"name": "JUCHEOLJIN",
"url": "https://github.com/JUCHEOLJIN"
},
{
"name": "raymondanything",
"url": "https://github.com/raymondanythings"
}
],
"scripts": {
"postinstall": "panda codegen",
"dev": "vite",
"test": "vitest",
"format": "prettier --write .",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format:check": "prettier --check ."
},
"dependencies": {
"@ark-ui/react": "^5.18.1",
"axios": "^1.11.0",
"lucide-react": "^0.525.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router": "^7.7.1"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@pandacss/dev": "^0.54.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"happy-dom": "^18.0.1",
"msw": "^2.10.4",
"prettier": "^3.6.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"packageManager": "yarn@4.9.2",
"msw": {
"workerDirectory": [
"src/server"
]
}
}