-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.77 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.77 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
{
"name": "{{.project_name}}",
"version": "1.0.0",
"main": "build/index.js",
"type": "module",
"scripts": {
"start": "NODE_ENV=production node --env-file-if-exists=./.env ./dist/server/server.js",
"dev": "NODE_ENV=development tsx watch --tsconfig ./tsconfig.server.json --env-file-if-exists=./.env ./server/server.ts",
"build:client": "tsc -b tsconfig.client.json && vite build --config client/vite.config.ts",
"build:server": "tsc -b tsconfig.server.json",
"build": "npm run build:server && npm run build:client",
"typecheck": "tsc -p ./tsconfig.server.json --noEmit && tsc -p ./tsconfig.client.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:ast-grep": "appkit-lint",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "vitest run && npm run test:smoke",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:smoke": "playwright install chromium && playwright test tests/smoke.spec.ts",
"clean": "rm -rf client/dist dist build node_modules .smoke-test test-results playwright-report",
"typegen": "appkit-generate-types",
"setup": "appkit-setup --write"
},
"keywords": [],
"author": "",
"license": "Unlicensed",
"description": "{{.app_description}}",
"dependencies": {
"@databricks/appkit": "0.2.0",
"@databricks/appkit-ui": "0.2.0",
"@databricks/sdk-experimental": "^0.14.2",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.6.0",
"lucide-react": "^0.546.0",
"next-themes": "^0.4.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-resizable-panels": "^3.0.6",
"superjson": "^2.2.5",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.4.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.1.13"
},
"devDependencies": {
"@ast-grep/napi": "^0.37.0",
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.1.17",
"@tailwindcss/vite": "^4.1.17",
"@types/express": "^5.0.5",
"@types/node": "^24.6.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"prettier": "^3.6.2",
"sharp": "^0.34.5",
"tailwindcss": "^4.0.14",
"tsx": "^4.20.6",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "npm:rolldown-vite@7.1.14",
"vitest": "^4.0.14"
},
"overrides": {
"vite": "npm:rolldown-vite@7.1.14"
}
}