-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.68 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.68 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"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",
"start-chrome": "web-ext run --target chromium",
"start-firefox": "web-ext run",
"minify-icon-font": "ts-node src/tool/minify-icon-font.ts",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\"",
"pack-firefox": "cd dist && zip -r -FS ../monkeytype-cc-extension-firefox.zip *",
"pack-chrome": "zip -r -FS monkeytype-cc-extension-chrome.zip dist",
"pack-source-code": "zip -r -FS monkeytype-cc-extension-source.zip package.json postcss.config.cjs public README.md src tailwind.config.cjs tsconfig.json webpack yarn.lock"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chibat/chrome-extension-typescript-starter.git"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/roboto": "^5.2.8",
"@mui/material": "^7.3.4",
"@redux-devtools/extension": "^3.3.0",
"classnames": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "18.3.1",
"react-moveable": "^0.56.0",
"tangent-cc-lib": "0.0.16",
"webextension-polyfill": "^0.12.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@phenomnomnominal/tsquery": "^6.1.3",
"@tailwindcss/postcss": "^4.1.14",
"@types/chrome": "0.0.158",
"@types/fontkit": "^2.0.8",
"@types/jest": "^29.5.0",
"@types/node": "^24.8.1",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"@types/webextension-polyfill": "^0.12.4",
"@web-alchemy/fonttools": "^1.3.4",
"autoprefixer": "^10.4.21",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^7.1.2",
"fontkit": "^2.0.4",
"glob": "^7.1.6",
"jest": "^29.5.0",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"prettier": "^2.2.1",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2 ",
"style-loader": "^4.0.0",
"tailwindcss": "^4.1.14",
"ts-jest": "^29.1.0",
"ts-loader": "^8.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.0.4",
"web-ext": "^9.1.0",
"webpack": "^5.94.0",
"webpack-cli": "^4.0.0",
"webpack-livereload-plugin": "^3.0.2",
"webpack-merge": "^5.0.0"
},
"resolutions": {
"react-is": "^18.3.1"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}