-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.62 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
{
"version": "0.20.0",
"devDependencies": {
"@github/relative-time-element": "^4.4.5",
"@swc/html": "^1.10.16",
"@types/chrome": "^0.0.304",
"@types/isotope-layout": "^3.0.13",
"@types/mustache": "^4.2.5",
"@types/uuid": "^10.0.0",
"@webcomponents/custom-elements": "^1.6.0",
"bootstrap": "^5.3.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.20.1",
"eslint-webpack-plugin": "^4.2.0",
"html-loader": "^5.1.0",
"html-minimizer-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.6.3",
"isotope-layout": "^3.0.6",
"json-minimizer-webpack-plugin": "^5.0.0",
"mini-css-extract-plugin": "^2.9.2",
"mustache": "^4.2.0",
"prettier": "^3.5.1",
"source-map-loader": "^5.0.0",
"terser-webpack-plugin": "^5.3.11",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"uuid": "^11.0.5",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
},
"scripts": {
"build": "tsc && webpack --env prod",
"dev": "tsc && webpack serve",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier:check": "prettier . --check",
"prettier:fix": "prettier . --write",
"pc": "npm run prettier:check",
"pf": "npm run prettier:fix",
"setup-git-hooks": "git config core.hooksPath .githooks",
"dist-zip": "rm -rf bandcamp-to-discogs-${npm_package_version}.zip && cd dist/ && zip -r ../bandcamp-to-discogs-${npm_package_version}.zip ./* && cd ..",
"make": "npm run build && npm run dist-zip"
}
}