forked from signadot/browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 KB
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
44
45
46
47
48
49
{
"name": "Signadot",
"version": "2.1.0",
"description": "Signadot",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "npx jest",
"prettier:write": "biome format --write src"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/signadot/chrome-extension.git"
},
"dependencies": {
"@blueprintjs/core": "5.7.1",
"@blueprintjs/select": "5.0.19",
"@braintree/sanitize-url": "^7.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.6.1",
"react-icons": "^4.12.0",
"react-query": "^3.39.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/chrome": "^0.0.251",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.8.1",
"glob": "^7.1.6",
"jest": "^29.5.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2 ",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^8.0.0",
"typescript": "^5.0.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.0.0"
}
}