-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.5 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.5 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
{
"name": "find-duplicate-images",
"version": "1.0.0",
"description": "A little script to find duplicate images by content in a given directory.",
"main": "index.js",
"scripts": {
"build": "npm run build:shared && npm run build:backend && npm run build:frontend",
"build:backend": "tsc --project src/backend",
"build:frontend": "webpack --config src/frontend/webpack.config.js",
"build:shared": "tsc --project src",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"serve": "node dist/main.js",
"start": "npm run build && npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xDivisionByZerox/find-duplicate-images.git"
},
"keywords": [
"duplication finder",
"image finder"
],
"author": "Leyla Jähnig",
"license": "ISC",
"bugs": {
"url": "https://github.com/xDivisionByZerox/find-duplicate-images/issues"
},
"homepage": "https://github.com/xDivisionByZerox/find-duplicate-images#readme",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.13.0",
"ts-loader": "^9.5.1",
"typescript": "5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"axios": "^0.27.2",
"cors": "^2.8.5",
"express": "^4.17.3",
"rxjs": "^7.4.0"
}
}