-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
41 lines (41 loc) · 997 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
36
37
38
39
40
41
{
"name": "monopoly-js",
"version": "1.0.0",
"description": "Javascript implementation of the Monopoly game",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/francois-roseberry/monopoly-js.git"
},
"engines": {
"node": ">= 18.20.4"
},
"workspaces": {
"packages": [
"client"
]
},
"author": "francois-roseberry",
"license": "WTFPL",
"scripts": {
"e2e": "yarn playwright test",
"start": "node server/server.js client/dist",
"client": "yarn workspace @monopoly-js/client"
},
"devDependencies": {
"@playwright/test": "1.48.2",
"@types/node": "22.9.0"
},
"dependencies": {
"express": "4.21.1"
},
"packageManager": "[email protected]",
"_moduleAliases": {
"@test": "client/test",
"@app": "client/src/application",
"@domain": "client/src/domain",
"@ui": "client/src/ui",
"@infrastructure": "client/src/infrastructure",
"@i18n": "client/src/infrastructure/i18n"
}
}