-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "marble-cms",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"check": "npm run check-typescript && npm run check-eslint",
"dev": "vite",
"format": "prettier --write .",
"check-eslint": "DEBUG='eslint:eslint' eslint --max-warnings 0 .",
"check-prettier": "prettier --check .",
"check-typescript": "tsc",
"pack": "run g:pack",
"preview": "vite preview"
},
"dependencies": {
"@usemarble/sdk": "^1.1.2",
"framer-plugin": "^3.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react-swc": "^4.0.1",
"eslint": "^9.35.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.4.0",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0",
"vite": "^7.1.11",
"vite-plugin-framer": "^1.0.7",
"vite-plugin-mkcert": "^1.17.8"
}
}