-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.27 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
{
"name": "@sql2ai/source",
"version": "0.0.1",
"private": true,
"description": "SQL2.AI - AI-Driven Database Development Platform",
"author": "Chris Therriault <chris@servicevision.net>",
"license": "UNLICENSED",
"scripts": {
"build": "nx build",
"test": "nx test",
"lint": "nx lint",
"serve": "nx serve",
"dev:api": "nx serve api",
"dev:web": "nx serve web",
"dev:site": "nx serve site",
"build:api": "nx build api --prod",
"build:web": "nx build web --prod",
"build:site": "nx build site --prod",
"affected:build": "nx affected --target=build",
"affected:test": "nx affected --target=test",
"graph": "nx graph",
"clean": "nx reset && rm -rf node_modules"
},
"workspaces": [
"apps/*",
"libs/*",
"packages/*"
],
"devDependencies": {
"@nx/devkit": "^19.0.0",
"@nx/eslint": "^19.0.0",
"@nx/eslint-plugin": "^19.0.0",
"@nx/jest": "^19.0.0",
"@nx/js": "^19.0.0",
"@nx/next": "^19.0.0",
"@nx/node": "^19.0.0",
"@nx/react": "^19.0.0",
"@nx/vite": "^19.0.0",
"@nx/workspace": "^19.0.0",
"@types/node": "^20.19.27",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"autoprefixer": "^10.4.23",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.0",
"jest": "^29.7.0",
"nx": "^19.0.0",
"postcss": "^8.5.6",
"prettier": "^3.2.0",
"tailwindcss": "^3.4.19",
"ts-jest": "^29.1.0",
"typescript": "^5.4.0"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/nextjs": "^10.32.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.26",
"gray-matter": "^4.0.3",
"lucide-react": "^0.562.0",
"next": "^14.2.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"resend": "^4.0.0",
"tailwind-merge": "^3.4.0",
"zod": "^3.23.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"volta": {
"node": "20.11.1"
}
}