generated from bradsk88/firefly-iii-chrome-extension-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.97 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
{
"name": "simple-oauth2-client-extension",
"description": "A simple OAuth2 client chrome extension to get access token via authorization code flow for development usage",
"repository": "[email protected]:satetsu888/simple-oauth2-client-extension.git",
"author": "Brad Johnson",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"build-dev": "webpack --config webpack/webpack.dev.js",
"test": "jest",
"zip": "find . \\( -name \"node_modules\" -o -name \"src\" -o -name \"webpack\" -o -name \".git\" -o -name \"*.zip\" -o -name \".idea\" \\) -prune -o \\( -name \".gitignore\" \\) -prune -o -type f -print | zip -FSr publish.zip -@",
"up-version": "read -p \"What version would you like to use for the new release? (Currently $(grep -oP '(?<=\"version\": \")[^\"]*' manifest.json)): \" version && if [[ ! -z \"$version\" ]]; then sed -i.bak \"s/\\\"version\\\": \\\"[^\\\"]*\\\"/\\\"version\\\": \\\"$version\\\"/\" manifest.json && rm -f manifest.json.bak; fi\n",
"cl-reminder": "echo \"Remember to update the CHANGELOG for version $(grep -oP '(?<=\"version\": \")[^\"]*' manifest.json)\"\n",
"package": "npm run up-version && npm run zip && npm run cl-reminder"
},
"devDependencies": {
"@types/chrome": "^0.0.203",
"@types/jest": "^29.2.5",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"css-loader": "^6.7.3",
"jest": "^29.3.1",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@mui/material": "^5.11.8",
"firefly-iii-typescript-sdk-fetch": "^1.0.0",
"js-sha512": "^0.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"xmlhttprequest": "^1.8.0"
}
}