-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 795 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 795 Bytes
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
{
"name": "upflow-api",
"version": "1.0.0",
"description": "Upflow documents API",
"main": "src/app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"start": "node dist/app.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/app.js\""
},
"keywords": [
"api",
"micro-service",
"upflow",
"documents"
],
"author": "Soumaila Abdoulaye DIARRA",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.1.3",
"concurrently": "^8.0.1",
"nodemon": "^2.0.22",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"pdf-img-convert": "^1.2.1",
"uuid": "^9.0.0"
}
}