-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.44 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.44 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
{
"name": "kontent-ai-custom-app-starter-react",
"version": "1.0.0",
"description": "Starter template for Kontent.ai custom apps built with React and TypeScript",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format --write .",
"format:check": "biome format .",
"type-check": "tsc --noEmit"
},
"keywords": [
"kontent-ai",
"custom-app",
"react",
"typescript",
"starter",
"template",
"cms"
],
"author": "Kontent.ai",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kontent-ai/custom-app-starter-react.git"
},
"bugs": {
"url": "https://github.com/kontent-ai/custom-app-starter-react/issues"
},
"homepage": "https://github.com/kontent-ai/custom-app-starter-react#readme",
"dependencies": {
"@kontent-ai/custom-app-sdk": "^1.0.0",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@kontent-ai/biome-config": "^0.5.1",
"@kontent-ai/eslint-config": "^2.0.2",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.55.0",
"typescript": "^5.2.2",
"vite": "^5.0.8"
}
}