-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "chrome-extension-vue-boilerplate",
"version": "1.0.0",
"description": "A Chrome Extensions boilerplate using Vue 3, TypeScript and Webpack 5.",
"main": "index.js",
"scripts": {
"dev": "webpack --config build/webpack.dev.js --watch",
"build": "webpack --config build/webpack.prod.js",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"clean": "rimraf dist",
"test": "npx jest",
"lint-staged": "cross-env PRE_COMMIT=true lint-staged",
"commitlint": "commitlint",
"postinstall": "husky install"
},
"author": "iafine",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iafine/chrome-extension-vue-boilerplate.git"
},
"dependencies": {
"axios": "^0.21.4",
"jquery": "^3.6.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@soda/friendly-errors-webpack-plugin": "^1.8.0",
"@types/chrome": "0.0.143",
"@types/jest": "^26.0.24",
"@types/jquery": "^3.5.6",
"@types/lodash": "^4.14.174",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^7.1.6",
"husky": "^7.0.2",
"jest": "^26.6.3",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"rimraf": "^3.0.2 ",
"ts-jest": "^26.5.5",
"ts-loader": "^6.2.1",
"typescript": "^4.4.3",
"webpack": "^5.54.0",
"webpack-cli": "^4.8.0",
"webpack-extension-reloader": "^1.1.4",
"webpack-merge": "~4.2.2"
}
}