-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.03 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": "chrome-extension",
"version": "1.0.0",
"main": "index.js",
"author": "Altair J. Fernandes <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "yarn webpack --config webpack.dev.js",
"patch": "node dist.js patch",
"minor": "node dist.js minor",
"major": "node dist.js major",
"watch": "node watchman.js"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"adm-zip": "^0.5.9",
"babel-minify": "^0.5.1",
"babel-preset-minify": "^0.5.2",
"chokidar": "^3.5.3",
"copy-webpack-plugin": "^10.2.4",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^5.0.0",
"fs-extra": "^11.1.0",
"semver": "^7.3.8",
"webpack": "^5.75.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}