-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.89 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
53
54
55
56
57
58
59
{
"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.5",
"express": "^4.21.1",
"helmet": "^8.0.0",
"jimp": "^1.6.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"rate-limiter-flexible": "^5.0.4",
"response-time": "^2.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.8.6",
"@types/response-time": "^2.3.8",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
},
"packageManager": "yarn@1.22.19"
}