-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "spriteforge",
"version": "1.0.0",
"description": "Generate game sprites using OpenAI's image generation API",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "concurrently \"npm run server\" \"npm run tailwind\"",
"server": "nodemon server.js",
"tailwind": "tailwindcss -i ./styles/input.css -o ./styles/output.css --watch",
"build": "tailwindcss -i ./styles/input.css -o ./styles/output.css --minify",
"postinstall": "npm run build",
"predeploy": "npm run build",
"deploy": "gh-pages -d ."
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"http-server": "^14.1.1",
"multer": "^1.4.5-lts.1",
"openai": "^4.28.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"gh-pages": "^6.1.1",
"nodemon": "^3.0.3",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"tailwindcss": "^3.4.1"
},
"engines": {
"node": ">=18"
}
}