-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.17 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
{
"name": "web-differences",
"version": "3.0.0",
"description": "Mainly used for WordPress sites to test after a plugin update. Currently working by having a dev/staging site and production site.",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"lint": "eslint src/**/*.ts --fix",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.4",
"chromedriver": "^124.0.1",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"selenium-webdriver": "^4.20.0",
"sharp": "^0.33.3",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/selenium-webdriver": "^4.1.22",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
}
}