-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
{
"name": "lun-helper",
"version": "3.0.0",
"description": "This is a Chrome extension designed to enhance the user experience on https://lun.ua",
"main": "background.js",
"type": "module",
"scripts": {
"watch": "webpack --mode=development --watch --config config/webpack.config.js",
"build": "webpack --mode=production --config config/webpack.config.js",
"pack": "node pack.js",
"repack": "npm run build && npm run pack",
"format": "prettier --write --ignore-unknown \"{config,public,src}/**/*.{html,css,js,ts,json}\"",
"lint": "eslint src",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git@github.com:zachross25/lun-helper.git"
},
"keywords": [
"flats buildings appartments investments"
],
"author": "zachross25",
"license": "ISC",
"homepage": "https://github.com/zachross25/lun-helper#readme",
"dependencies": {
"@supabase/supabase-js": "^2.45.4",
"chrome-types": "^0.1.308",
"globals": "^15.11.0"
},
"devDependencies": {
"adm-zip": "^0.5.16",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.12.0",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-json": "^4.0.1",
"file-loader": "^6.2.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mini-css-extract-plugin": "^2.9.1",
"prettier": "^2.8.8",
"webpack": "^5.95.0",
"webpack-cli": "^4",
"webpack-merge": "^5.10.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintIgnore": [
"test/**/*"
]
}