-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 993 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
{
"name": "image-filter",
"version": "1.0.0",
"description": "It is a Node-Express application which runs a simple script to process images.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf www/ || true",
"build": "npm run clean && tsc && cp package.json www/package.json && mkdir www/tmp/ && cd www && zip -r Archive.zip . && cd ..",
"dev": "ts-node-dev --respawn --transpile-only ./src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwivediabhimanyu/image-filter.git"
},
"author": "Abhimanyu Dwivedi",
"license": "ISC",
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/express": "^4.17.0",
"@types/node": "^11.13.17",
"ts-node-dev": "^1.0.0-pre.40",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"dependencies": {
"express": "^4.17.1",
"jimp": "^0.16.1",
"regex": "^0.1.1",
"url-exists": "^1.0.3"
}
}