-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "qwant-search-extension",
"version": "7.1.2",
"description": "Qwant Search Extension",
"author": "[email protected]",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "ssh://[email protected]:Qwant/qwant-search-extension.git"
},
"scripts": {
"build": "babel-node tools/bundle.js",
"lint": "eslint . --ext .js",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/eslint-parser": "^7.24.6",
"@babel/node": "^7.24.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.24.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/register": "^7.24.6",
"babel-eslint": "^10.1.0",
"clean-webpack-plugin": "^4.0.0",
"commander": "^12.1.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.4.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.2",
"lint-staged": "^15.2.5",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"zip-webpack-plugin": "^4.0.1"
},
"lint-staged": {
"*.{js}": [
"eslint --fix"
]
}
}