-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "udacity-c2-image-filter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf www/ || true",
"build": "npm run clean && tsc && copy package.json www\\package.json && mkdir www\\tmp\\ && cd www && 7z u -tzip Archive.zip . && cd ..",
"build-original": "npm run clean && tsc && cp package.json www/package.json && mkdir www/tmp/ && cd www && zip -r Archive.zip . && cd ..",
"dev": "ts-node-dev ./src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grutt/udacity-c2-image-filter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/grutt/udacity-c2-image-filter/issues"
},
"homepage": "https://github.com/grutt/udacity-c2-image-filter#readme",
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/express": "^4.17.0",
"@types/jsonwebtoken": "^8.5.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",
"http-status-codes": "^2.1.4",
"jimp": "^0.16.1",
"jsonwebtoken": "^8.5.1",
"rimraf": "^3.0.2"
}
}