-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
68 lines (68 loc) · 2.13 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
62
63
64
65
66
67
68
{
"name": "twitch-enhancer",
"version": "1.0.0",
"description": "Extension that adds what is missing on Twitch.",
"private": "true",
"scripts": {
"dev": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint --ext .jsx,.js --max-warnings=0 . && npx prettier -c .",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/animekkk/twitch-enhancer.git"
},
"keywords": [],
"author": "animekkk",
"license": "MIT",
"bugs": {
"url": "https://github.com/animekkk/twitch-enhancer/issues"
},
"homepage": "https://github.com/animekkk/twitch-enhancer#readme",
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"ansicolor": "^1.1.100",
"babel-loader": "^8.2.5",
"babel-plugin-wildcard": "^7.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.1",
"eslint-webpack-plugin": "^3.2.0",
"glob": "^8.0.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"styled-components": "^5.3.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-glob-loader": "^1.0.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/runtime": "^7.18.9"
},
"browserslist": "> 0.25%, not dead",
"lint-staged": {
"*.*": [
"npx prettier -w"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}