-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 958 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 958 Bytes
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
{
"name": "ashley-os",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"docker:build": "docker build -t ashley-os:local .",
"gcp:bootstrap": "bash scripts/bootstrap-gcp.sh",
"gcp:deploy": "bash scripts/deploy-gcp.sh"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.88",
"@babel/standalone": "^7.26.0",
"@types/uuid": "^10.0.0",
"ai": "^5.0.115",
"framer-motion": "^12.23.26",
"lucide-react": "^0.562.0",
"next": "^15.5.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.23",
"eslint": "^9.16.0",
"eslint-config-next": "^15.1.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
}
}