generated from MrTimeey/typescript-node-express-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.84 KB
/
package.json
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
{
"name": "ai-image-generator",
"version": "1.0.0",
"description": "",
"main": "dist/main.ts",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "nodemon",
"update-tailwind": "npx tailwindcss -i src/static/public/css/tailwind.css -o ./src/static/public/css/generated-tailwind.css",
"serve": "ts-node src/main.ts",
"lint": "eslint **/*.ts",
"lint:fix": "eslint --fix **/*.ts",
"format": "npx prettier --write ."
},
"author": "",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.16",
"archiver": "^7.0.1",
"axios": "^1.7.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fs-extra": "^11.2.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"openai": "^4.62.0",
"rimraf": "^6.0.1",
"sharp": "^0.33.5",
"sync-request": "^6.1.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/archiver": "^6.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/fs-extra": "^11.0.4",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/node": "^16.18.7",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"nodemon": "^3.0.1",
"prettier": "^2.7.1",
"tailwindcss": "^3.4.13",
"ts-node": "^10.9.1",
"tsup": "^6.2.3",
"typescript": "^4.9.4"
},
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
}