-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "data-ops-gui",
"private": true,
"version": "0.0.0",
"type": "module",
"resolvePackageJsonImports": true,
"author": "Daniel Pokorny",
"license": "MIT",
"scripts": {
"dev": "vite",
"dev:functions": "netlify dev",
"build": "vite build",
"build:functions": "tsc -p src/functions/tsconfig.json",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx src/",
"lint:fix": "eslint . --fix --ext .ts,.tsx src/",
"fmt": "dprint fmt",
"fmt:check": "dprint check"
},
"dependencies": {
"@kontent-ai/data-ops": "^2.2.1",
"@kontent-ai/management-sdk": "^7.3.0",
"@kontent-ai/stylekit": "^1.0.0",
"@netlify/functions": "^2.8.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^6.26.2",
"react-router-dom": "^6.26.2",
"zod": "^3.23.8",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@kontent-ai/eslint-config": "^1.0.2",
"@types/node": "^22.7.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"dprint": "^0.47.2",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"netlify-cli": "^17.37.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1"
}
}