-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"name": "udagram-image-filter",
"version": "1.0.0",
"description": "Udagram Image Filter App",
"main": "index.js",
"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.10.2"
},
"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 --transpileOnly ./src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thepembeweb/udagram-image-filter.git"
},
"keywords": [],
"author": "Pemberai Sweto",
"license": "MIT",
"bugs": {
"url": "https://github.com/thepembeweb/udagram-image-filter/issues"
},
"homepage": "https://github.com/thepembeweb/udagram-image-filter#readme"
}