-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.67 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": "@msw-devtools/monorepo",
"repository": {
"type": "git",
"url": "git+https://github.com/vkruglikov/msw-devtools-extension.git"
},
"packageManager": "npm@8.5.0",
"scripts": {
"lint": "npx prettier --check \"./**/*.{ts,tsx}\"",
"lint:fix": "npx prettier --write \"./**/*.{ts,tsx}\"",
"check-types": "tsc --noEmit",
"build": "turbo check-types build",
"changeset": "changeset",
"publish:connect": "npm run build -- --filter=@msw-devtools/connect && changeset publish",
"dev": "turbo dev",
"docs": "turbo docs",
"clean": "rimraf packages/*/{node_modules,dist,.turbo} node_modules .turbo"
},
"author": "Valentin Kruglikov",
"license": "MIT",
"bugs": {
"url": "https://github.com/vkruglikov/msw-devtools-extension/issues"
},
"homepage": "https://github.com/vkruglikov/msw-devtools-extension#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@svgr/webpack": "^8.1.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/chrome": "^0.0.287",
"@types/node": "^22.10.2",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"clsx": "^2.1.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"microbundle": "^0.15.1",
"msw": "^2.7.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.11",
"ts-loader": "^9.5.1",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}