-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "api-image",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint **/*.ts",
"dev": "nodemon --watch 'src/**/*.ts' --exec ts-node-dev ./src/app.ts",
"test": "jest",
"build": "tsc -p .",
"prod": "node ./dist/src/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.5",
"axios": "^1.6.5",
"cloudinary": "^1.41.3",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0"
}
}