generated from chibat/chrome-extension-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "chrome-extension-typescript-starter",
"version": "1.0.0",
"description": "chrome-extension-typescript-starter",
"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 --passWithNoTests",
"style": "prettier --write \"src/**/*.{ts,tsx}\""
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chibat/chrome-extension-typescript-starter.git"
},
"dependencies": {
"@dcspark/cardano-multiplatform-lib-browser": "^3.1.2",
"@fabianbormann/cardano-peer-connect": "^1.2.12",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.1",
"bech32": "^2.0.0",
"buffer": "^6.0.3",
"cbor-web": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stream-browserify": "^3.0.0",
"styled-components": "^5.3.9",
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest"
},
"resolutions": {
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest"
},
"devDependencies": {
"@swc/core": "^1.3.52",
"@types/chrome": "0.0.158",
"@types/jest": "^27.0.2",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"copy-webpack-plugin": "^9.0.1",
"glob": "^7.1.6",
"jest": "^27.2.1",
"prettier": "^2.2.1",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2 ",
"swc-loader": "^0.2.3",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3 ",
"webpack": "^5.76.0",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.0.0"
}
}