-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 958 Bytes
/
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
{
"name": "tunele",
"version": "1.1.0",
"description": "An open-source clone of the music game Heardle",
"private": true,
"workspaces": [
"src/backend",
"src/client"
],
"scripts": {
"start": "concurrently \"yarn workspace backend dev\" \"yarn workspace client dev\"",
"backend": "yarn workspace backend dev",
"backend:preview": "yarn workspace backend build && yarn workspace backend preview",
"client": "yarn workspace client dev",
"client:build": "yarn workspace client build",
"client:preview": "yarn workspace client preview",
"test": "yarn workspace backend test",
"test:watch": "yarn workspace backend test:watch",
"lint": "yarn workspace backend lint && yarn workspace client lint"
},
"keywords": [
"Heardle",
"clone",
"game",
"music"
],
"author": "",
"license": "MIT",
"engines": {
"node": "18.x"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}