-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 1.66 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
{
"name": "aws-peacock-management-console",
"version": "2.13",
"repository": "https://github.com/xhiroga/aws-peacock-management-console",
"author": "Hiroaki Ogasawara <[email protected]>",
"scripts": {
"watch": "webpack --devtool inline-source-map --mode development --watch",
"build": "webpack --mode production",
"clean": "node -e 'fs.rmSync(`dist`, {recursive:true, force:true})'",
"lint": "eslint . --ignore-path .gitignore",
"archive": "mkdir -p packages && cd dist && zip -r ../packages/aws-peacock-management-console.zip *",
"package": "yarn clean && yarn build && yarn archive && yarn show-developer-dashboard",
"show-developer-dashboard": "echo \"Chrome Web Store Developer Dashboard: https://chrome.google.com/webstore/devconsole/\nFirefox Add-on Developer Hub: https://addons.mozilla.org/ja/developers/\"",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.0.0"
},
"devDependencies": {
"@types/chrome": "^0.0.159",
"@types/copy-webpack-plugin": "^8.0.1",
"@types/firefox-webext-browser": "^94.0.1",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.5",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.4.1",
"ts-jest": "^29.1.5",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
"typescript": "^4.4.4",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.0"
}
}