forked from WayneKeenan/ClintonCAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.4 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
60
61
62
63
64
65
66
67
{
"name": "typescript",
"version": "1.0.0",
"main": "index.js",
"private": true,
"scripts": {
"format": "prettier --write \"**/*.{mjs,js,jsx,mts,ts,tsx,json,md,html}\" && git add -u",
"lint": "eslint \"**/*.{mjs,js,jsx,mts,ts,tsx,json,md,html}\"",
"typecheck": "tsc --noEmit",
"test": "jest",
"dev:chromium": "webpack --watch --mode development --env browser=chromium --config engines/chromium/webpack.config.js",
"dev:gecko": "webpack --watch --mode development --env browser=gecko --config engines/gecko/webpack.config.js",
"build:chromium": "webpack --mode production --config engines/chromium/webpack.config.js",
"build:gecko": "webpack --mode production --config engines/gecko/webpack.config.js",
"prepare": "husky"
},
"keywords": [
"ClintonCAT",
"Clinton",
"CAT"
],
"author": "WayneKeenan",
"license": "MIT",
"description": "Search Rossmann's Consumer Action Taskforce (CAT) wiki for the site being visited",
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@eslint/js": "^9.19.0",
"@types/chrome": "^0.0.299",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/sinon": "^17.0.3",
"@types/sinon-chrome": "^2.2.15",
"@types/webpack": "^5.28.5",
"@types/webpack-env": "^1.18.8",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-check-file": "^3.0.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^3.4.2",
"puppeteer": "^24.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sinon": "^19.0.2",
"sinon-chrome": "^3.0.1",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"dependencies": {
"classnames": "^2.5.1"
}
}