-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.07 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.07 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
{
"name": "cypress-rspack-dev-server",
"version": "2.0.0-rc.2",
"description": "Launches Rspack Dev Server for Component Testing",
"main": "dist/index.js",
"scripts": {
"build": "pnpm tsc || echo 'built, with type errors'",
"build-prod": "pnpm build",
"check-ts": "pnpm tsc --noEmit",
"dev": "pnpm with:comment tsc --watch",
"clean": "rimraf dist",
"cypress:run": "cypress run --component --project ./cypress --browser chrome --config-file config/cypress.config.ts",
"cypress:run-with-comment": "pnpm with:comment cypress run --component --project ./cypress --browser chrome --config-file config/cypress.config.ts",
"cypress:open": "cypress open --component --project ./cypress --browser chrome --config-file config/cypress.config.ts",
"with:comment": "cross-env DEBUG=cypress-rspack-dev-server:*",
"lint": "oxlint",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check .",
"test": "vitest run",
"prepare": "husky"
},
"dependencies": {
"find-up": "6.3.0",
"local-pkg": "0.4.1",
"tslib": "^2.8.1",
"webpack-merge": "^5.10.0"
},
"devDependencies": {
"@rspack/core": "2.0.0-rc.1",
"@rspack/dev-server": "2.0.0-rc.2",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.23",
"cross-env": "^7.0.3",
"cypress": "^15.9.0",
"debug": "^4.4.3",
"fs-extra": "9.1.0",
"husky": "^9.1.7",
"lodash": "^4.17.23",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"path": "^0.12.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
},
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/th3fallen/cypress-rspack-dev-server.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"rspack",
"cypress",
"dev-server",
"component test"
],
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}