-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 986 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "MemoryFlash",
"version": "1.0.0",
"main": "index.js",
"private": true,
"scripts": {
"dev": "concurrently \"yarn workspace MemoryFlashServer dev\" \"yarn workspace MemoryFlashReact dev\"",
"test": "yarn workspace MemoryFlashServer test && yarn workspace MemoryFlashCore test && yarn workspace MemoryFlashReact test:screenshots",
"test:codex": "yarn workspace MemoryFlashServer build && yarn workspace MemoryFlashReact build && yarn workspace MemoryFlashServer test && yarn workspace MemoryFlashCore test",
"test:screenshots:remote": "./scripts/test-screenshots-remote.sh"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "yarn@4.9.2+sha512.1fc009bc09d13cfd0e19efa44cbfc2b9cf6ca61482725eb35bbc5e257e093ebf4130db6dfe15d604ff4b79efd8e1e8e99b25fa7d0a6197c9f9826358d4d65c3c",
"dependencies": {
"MemoryFlashReact": "workspace:apps/react",
"MemoryFlashServer": "workspace:apps/server"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}