e856ee54ff
This is a way to run `npm install` on the compat test fixtures without the node_modules at the root of the repo interfering with the node's module resolution (and that of parcel/webpack/etc). It's hacky because ideally we'd just put each test in its own docker container for simplicity. We tried that in the private repo, but the complexity is not worth the benefit.
20 lines
490 B
JSON
20 lines
490 B
JSON
{
|
|
"name": "@theatre/compat-tests",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"install-fixtures": "zx ./scripts/install-fixtures.mjs",
|
|
"clean": "zx ./scripts/clean.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@cspotcode/zx": "^6.1.2",
|
|
"node-cleanup": "^2.1.2",
|
|
"playwright": "^1.29.1",
|
|
"prettier": "^2.6.2",
|
|
"verdaccio": "^5.26.1",
|
|
"verdaccio-auth-memory": "^10.2.2",
|
|
"verdaccio-memory": "^10.3.2",
|
|
"zx": "^7.1.1"
|
|
},
|
|
"version": "0.0.1-COMPAT.1"
|
|
}
|