-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.89 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.89 KB
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
62
63
64
65
66
{
"name": "bandcamp-play",
"version": "10.0.0",
"description": "Bandcamp Play",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"analize": "webpack --config webpack/webpack.analize.js",
"zip": "./zip.sh",
"lint": "eslint \"./**/*.{ts,tsx}\"",
"lint:fix": "eslint --fix \"./**/*.{ts,tsx}\"",
"format": "prettier --write \"./**/*.{ts,tsx,scss,md,json}\" --config ./.prettierrc.json"
},
"author": "Nazarii Borbiuk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/borbiuk/band-play"
},
"dependencies": {
"lucide-react": "0.562.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-tooltip": "5.30.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@tailwindcss/postcss": "4.1.18",
"@types/chrome": "0.1.35",
"@types/jest": "30.0.0",
"@types/react": "19.2.9",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.53.1",
"@typescript-eslint/parser": "8.53.1",
"copy-webpack-plugin": "13.0.1",
"css-loader": "7.1.2",
"css-minimizer-webpack-plugin": "^7.0.4",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"globals": "17.0.0",
"husky": "9.1.7",
"postcss": "8.5.6",
"postcss-loader": "8.2.0",
"postcss-preset-env": "11.1.1",
"prettier": "3.8.0",
"prettier-plugin-tailwindcss": "0.7.2",
"sass": "1.97.2",
"sass-loader": "16.0.6",
"style-loader": "4.0.0",
"tailwindcss": "3.4.17",
"ts-loader": "9.5.4",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "5.9.3",
"webpack": "5.104.1",
"webpack-bundle-analyzer": "5.1.1",
"webpack-cli": "6.0.1",
"webpack-merge": "6.0.1"
}
}