-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.56 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.56 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
{
"name": "backend",
"version": "1.0.0",
"description": "This service is running the backend of the visual testing server, which is receiving rendered images, generates comparison images and collates the result into a form usable by the frontend. The backend is accessible through a limited set of HTTP/HTTP APIs.",
"main": "index.cjs",
"scripts": {
"server": "node index.cjs",
"build:frontend": "cd frontend && npm install && npm run build",
"build:backend": "tsc",
"build": "npm run build:frontend && npm run build:backend",
"lint": "npx prettier . --check & eslint .",
"lint-fix": "npx prettier . --write & eslint . --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"@slack/web-api": "^7.0.4",
"@types/pngjs": "^6.0.4",
"body-parser": "^2.2.1",
"cors": "^2.8.5",
"express": "^5.2.0",
"fs": "^0.0.1-security",
"glob": "^11.1.0",
"multer": "^2.1.1",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"resize-img": "^2.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.7",
"@types/pixelmatch": "^5.2.6",
"@types/resize-img": "^2.0.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"typescript": "^5.4.5",
"typescript-eslint": "^8.58.0"
}
}