-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
62 lines (62 loc) · 1.73 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
{
"name": "chrome-extension-webpack",
"version": "0.2.0",
"description": "Get started with Chrome extensions development using webpack, Typescript, Sass, and more",
"scripts": {
"start": "webpack --watch --config webpack.dev.cjs",
"build": "webpack --config webpack.prod.cjs",
"lint": "eslint --ext .ts,.js --max-warnings=0 .",
"prettier": "prettier --write",
"test": "c8 mocha ./test/setup.js ./test/**/*.js"
},
"type": "module",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/chrome": "^0.0.193",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-loader": "^8.2.5",
"c8": "^7.13.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"dotenv-webpack": "^8.0.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-webpack-plugin": "^3.2.0",
"expect.js": "^0.3.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.1",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"sinon-chrome": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/runtime": "^7.18.6",
"normalize.css": "^8.0.1"
},
"browserslist": "> 0.25%, not dead",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"npm run prettier",
"npm run lint"
]
}
}