-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.13 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
{
"dependencies": {
"@pixelbin/admin": "^3.2.0",
"argon2": "^0.30.3",
"aws-sdk": "^2.1323.0",
"axios": "^1.3.4",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-response-handler": "^1.4.1",
"image-downloader": "^4.3.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.3",
"multer": "^1.4.5-lts.1",
"openai": "^3.2.1"
},
"name": "backend",
"version": "1.0.0",
"main": "build/index.js",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.32.0",
"nodemon": "^2.0.20",
"rimraf": "^4.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "npx nodemon",
"build":"tsc",
"build2": "rimraf ./build && tsc",
"start": "npm run build2 && node build/index.js",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}