-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.65 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
{
"name": "mafia-engine-extension",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"dev": "webpack --mode development --watch",
"lint": "eslint .",
"force-lint": "eslint . --fix",
"typecheck": "tsc --noEmit",
"format": "npx prettier . --write",
"format-lint": "npm run format && npm run force-lint"
},
"author": "JacksonVirgo",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@types/jquery": "^3.5.14",
"@types/js-yaml": "^4.0.5",
"@types/string-similarity": "^4.0.0",
"@types/uuid": "^10.0.0",
"@types/webextension-polyfill": "^0.10.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.49.0",
"eslint-plugin-boundaries": "^4.2.2",
"eslint-plugin-import": "^2.31.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.4",
"style-loader": "^3.3.3",
"tailwindcss": "^3.4.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"cheerio": "^1.0.0-rc.12",
"jquery": "^3.6.0",
"js-yaml": "^4.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.67.0",
"uuid": "^10.0.0",
"zod": "^3.22.2"
}
}