-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
29 lines (29 loc) · 899 Bytes
/
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
{
"name": "LeetHub v2",
"version": "2.0.8",
"private": true,
"description": "Automatically integrate your code with LeetCode and GitHub",
"type": "module",
"scripts": {
"dev": "webpack --mode=production --watch",
"setup": "npm i",
"format": "prettier --write **/*.{js,jsx,ts,tsx,css,html}",
"format-test": "prettier --check **/*.{js,jsx,ts,tsx,css,html}",
"lint": "eslint **/*.{js,ts} --fix",
"lint-test": "eslint **/*.{js,ts} --color",
"build": "webpack --mode=production",
"test": "jasmine"
},
"devDependencies": {
"@types/firefox-webext-browser": "^120.0.4",
"chrome-types": "^0.1.282",
"copy-webpack-plugin": "^12.0.2",
"filemanager-webpack-plugin": "^8.0.0",
"ignore-loader": "^0.1.2",
"jasmine": "^5.1.0",
"prettier": "^2.2.1",
"puppeteer": "^22.11.2",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4"
}
}