forked from gamersclub-booster/gamersclub-booster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1 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
{
"name": "gamersclub-booster",
"description": "Extensão para navegadores que adiciona algumas melhorias na plataforma da GamersClub",
"repository": "https://github.com/gamersclub-booster/gamersclub-booster",
"version": "2.2.6",
"main": "index.js",
"license": "GPL-3.0",
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"dev": "webpack --watch",
"build": "webpack",
"precommit": "commitlint -E HUSKY_GIT_PARAMS",
"lint": "eslint --config ./.eslintrc ./src",
"lint:fix": "eslint --fix --config ./.eslintrc ./src"
},
"dependencies": {
"axios": "^0.21.1",
"jquery": "^3.6.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"copy-webpack-plugin": "^8.1.1",
"eslint": "^7.24.0",
"husky": "^4.2.3",
"rimraf": "^3.0.2",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0"
}
}