-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.01 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
{
"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"
},
"devDependencies": {
"@types/chrome": "^0.0.203",
"@types/jest": "^29.2.5",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"jest": "^29.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": {
"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"
}
}