-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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": "boundless-media-server",
"version": "1.0.2",
"main": "src/index.ts",
"repository": "git@github.com:kirill-zhirnov/media-server.git",
"author": "Kirill Zhirnov <ekvixgroup@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "npx nodemon",
"build": "rm -rf ./dist/ && npx tsc --project tsconfig.json",
"start": "node ./dist/index.js",
"lint": "npx eslint --ext .ts ./src/"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.24.0",
"@types/command-line-args": "^5.2.0",
"@types/express": "^4.17.13",
"@types/node": "16",
"@types/serve-favicon": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"command-line-args": "^5.2.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"express": "^4.17.1",
"joi": "^17.4.2",
"node-imagemagick": "^0.1.8",
"nodemon": "^2.0.19",
"serve-favicon": "^2.5.0",
"simple-registry": "^0.2.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=16.x",
"yarn": "1.x"
}
}