-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.94 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.94 KB
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
53
54
55
56
57
58
59
60
61
{
"name": "simple-image-watermarking-web",
"version": "2.1.0",
"description": "Image Watermarking",
"main": "dist/index.js",
"repository": "https://github.com/bervProject/simple-image-watermarking-web.git",
"author": "Bervianto Leo Pratama <bervianto.leo@gmail.com>",
"maintainers": [
{
"email": "bervianto.leo@gmail.com",
"name": "Bervianto Leo Pratama",
"url": "https://berviantoleo.my.id"
}
],
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/",
"start-linux": "NODE_ENV=production node dist/",
"build": "shx rm -rf dist/ && tsc",
"lint": "eslint \"src/**/*.{js,ts}\" \"test/**/*.{js,ts}\"",
"fix-lint": "eslint \"src/**/*.{js,ts}\" \"test/**/*.{js,ts}\" --quiet --fix",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "cross-env NODE_ENV=test jest --testTimeout=60000 --coverage --forceExit --detectOpenHandles --verbose"
},
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1",
"helmet": "^8.1.0",
"jimp": "^1.6.0",
"morgan": "^1.10.1",
"multer": "^2.1.1",
"rate-limiter-flexible": "^11.0.0",
"response-time": "^2.3.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.1.0",
"@types/node": "^25.6.0",
"@types/response-time": "^2.3.9",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"cross-env": "^10.1.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.3.0",
"prettier": "^3.8.3",
"shx": "^0.4.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.9",
"ts-node-dev": "^2.0.0",
"typescript": "^6.0.3"
},
"packageManager": "yarn@1.22.19"
}