-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (35 loc) · 1.31 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
{
"name": "webstie-customizer-plus",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"watch": "webpack --mode=development --watch --config config/webpack.config.js",
"build": "webpack --mode=production --config config/webpack.config.js",
"zip": "npm run build && zip -r 'build.'$npm_package_version'.zip' build && mv 'build.'$npm_package_version'.zip' zips",
"prettier": "prettier",
"prettier:check": "prettier --check src/**/*{.ts,.css,.html} public/**/*{.ts,.css,.html} --no-error-on-unmatched-pattern",
"prettier:fix": "prettier --write src/**/*{.ts,.css,.html} public/**/*{.ts,.css,.html} --no-error-on-unmatched-pattern",
"eslint:check": "eslint --ext .ts ./src",
"check": "npm run prettier:check && npm run eslint:check"
},
"devDependencies": {
"@types/chrome": "^0.0.190",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
}
}