-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.68 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
{
"name": "gallery-dino",
"version": "1.0.0",
"description": "gallery-dino",
"main": "index.js",
"engines": {
"node": ">=18.x"
},
"scripts": {
"build:server": "babel src/server -d build/server --copy-files --minified --no-comments",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start:prod": "tsc && node dist/index.js",
"start:dev": "cross-env NODE_ENV=development nodemon --exec ts-node src/server",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"build": "npm run clean && npm run build:server",
"clean": "rm -rf build && mkdir build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/multer": "^1.4.12",
"@types/uuid": "^10.0.0",
"cloudinary": "^2.0.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"datauri": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"fs-extra": "^11.2.0",
"multer": "^1.4.5-lts.1",
"path": "^0.12.7",
"request": "^2.88.2",
"streamifier": "^0.1.1",
"vite": "^5.2.9"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.9.3",
"babel-plugin-inline-dotenv": "^1.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"cross-env": "^7.0.3",
"nodemon": "^3.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"winston": "^3.17.0"
}
}