-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 915 Bytes
/
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
{
"name": "document-compressor",
"version": "1.0.0",
"description": "Rest api for lossless text compresssion",
"main": "app.js",
"scripts": {
"start": "nodemon dist/app.js",
"dev": "nodemon src/app.ts",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bing101/Document-Compressor.git"
},
"author": "Arjun",
"license": "MIT",
"bugs": {
"url": "https://github.com/bing101/Document-Compressor/issues"
},
"homepage": "https://github.com/bing101/Document-Compressor#readme",
"devDependencies": {
"@types/express": "^4.17.8",
"@types/node": "^14.11.8",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/express-fileupload": "^1.1.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-csp-header": "^4.0.0",
"express-fileupload": "^1.2.0"
}
}