-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.7 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
{
"name": "webextension-typescript-template",
"version": "0.0.1",
"description": "webextension typescript template",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"watch": "webpack --watch --mode=development",
"commit": "git-cz",
"lint": "eslint --ext .ts,.js --ignore-path .gitignore .",
"zip": "ts-node scripts/zip.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mnao305/webextension-typescript-template.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/mnao305/webextension-typescript-template/issues"
},
"homepage": "https://github.com/mnao305/webextension-typescript-template#readme",
"dependencies": {
"commitizen": "^4.2.4",
"webextension-polyfill": "^0.8.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/archiver": "^5.3.0",
"@types/copy-webpack-plugin": "^8.0.1",
"@types/webextension-polyfill": "^0.8.1",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"archiver": "^5.3.0",
"copy-webpack-plugin": "^10.0.0",
"cz-conventional-changelog": "^3.0.1",
"cz-customizable": "^5.5.0",
"eslint": "^8.2.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"husky": "^7.0.4",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1"
}
}