forked from withDustin/targeek-image-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.58 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "targeek-image-server",
"version": "0.0.1",
"main": "dist/index.js",
"repository": "[email protected]:targeek/targeek-image-server.git",
"author": "Dương Đỗ <[email protected]>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development ts-node-dev --respawn --transpileOnly -r tsconfig-paths/register -r ./dotenv src/index.ts",
"build": "tsc",
"start:production": "NODE_ENV=production NODE_PATH=dist node -r ./dotenv dist/index",
"lint": "yarn tslint --project tsconfig.json \"src/**/*.ts\" && prettier --check src/**/*",
"test": "yarn lint"
},
"dependencies": {
"aws-sdk": "^2.419.0",
"body-parser": "^1.18.3",
"bull": "^3.7.0",
"bull-arena": "^2.6.2",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-redis-cache": "^1.1.3",
"file-type": "^10.9.0",
"md5-file": "^4.0.0",
"method-override": "^3.0.0",
"multer": "^1.4.1",
"redis": "^2.8.0",
"sharp": "^0.22.0",
"typescript": "^3.3.3333",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/body-parser": "1.17.0",
"@types/bull": "3.5.11",
"@types/cors": "2.8.4",
"@types/express": "4.16.1",
"@types/express-redis-cache": "1.1.0",
"@types/md5-file": "4.0.0",
"@types/method-override": "0.0.31",
"@types/multer": "1.3.7",
"@types/node": "11.13.6",
"@types/redis": "2.8.12",
"@types/sharp": "0.22.1",
"dotenv": "6.2.0",
"prettier": "1.16.4",
"ts-node": "8.1.0",
"ts-node-dev": "1.0.0-pre.32",
"tsconfig-paths": "3.8.0",
"tslint": "5.13.1",
"tslint-config-prettier": "1.18.0"
}
}