-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "ebook-converter",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"start": "node ./dist/index.js",
"dev": "tsnd --respawn -r tsconfig-paths/register ./src/index.ts",
"build": "rm -rf ./dist && tsc && tsc-alias",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Go-Pixels-Tech/ebook-converter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Go-Pixels-Tech/ebook-converter/issues"
},
"homepage": "https://github.com/Go-Pixels-Tech/ebook-converter#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.321.1",
"cors": "2.8.5",
"dotenv": "16.0.3",
"express": "4.18.2",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@types/multer": "^1.4.7",
"@types/node": "18.14.0",
"prettier": "2.8.4",
"ts-node-dev": "2.0.0",
"tsc-alias": "1.8.3",
"tsconfig-paths": "4.1.2",
"typescript": "4.9.5"
}
}