-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "goodebook",
"description": "Chrome extension to download and read books from Goodreads.",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/KleoPetroff/goodchitanka.git",
"author": "KleoPetroff <kleopetroff@gmail.com>",
"license": "MIT",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"prettier:check": "prettier ./src/**/*.ts --check",
"prettier:fix": "prettier ./src/**/*.ts --write",
"clear": "rimraf ./dist",
"lint": "eslint ./src",
"prepare": "husky install"
},
"dependencies": {
"@types/chrome": "0.0.281",
"@types/lodash-es": "4.17.12",
"copy-webpack-plugin": "12.0.2",
"lodash-es": "4.17.21",
"prettier": "3.3.3",
"stream-browserify": "3.0.0",
"typescript": "5.6.3",
"webpack": "5.96.1",
"xml-js": "1.6.11"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"css-loader": "7.1.2",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"html-webpack-plugin": "5.6.3",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"node-polyfill-webpack-plugin": "4.0.0",
"rimraf": "6.0.1",
"style-loader": "4.0.0",
"ts-loader": "9.5.1",
"webpack-cli": "5.1.4"
},
"lint-staged": {
"src/**/*.ts": "npm run lint"
}
}