-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 916 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 916 Bytes
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": "redirection-server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "NODE_ENV=development nodemon ./bin/www",
"test": "jest",
"coverage": "jest --coverage --watchAll"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.391.0",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^2.1.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"multer": "^1.4.5-lts.1",
"sharp": "^0.32.4"
},
"devDependencies": {
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.4",
"nodemon": "^3.0.1",
"prettier": "^3.0.1",
"supertest": "^6.3.3"
}
}