-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 KB
/
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
42
43
44
45
46
47
48
{
"name": "@pokester/app",
"version": "0.1.1",
"description": "Web application for playing free, no-limit poker online using play money",
"author": {
"name": "Sean Stern"
},
"homepage": "https://www.playpokester.com",
"repository": {
"type": "git",
"url": "https://github.com/seanstern/pokester"
},
"private": true,
"license": "GPL-3.0-only",
"engines": {
"node": "16.x"
},
"workspaces": [
"client",
"server",
"poker-engine/chevtek",
"poker-engine/fixtures",
"common-api"
],
"packageManager": "yarn@3.2.2",
"devDependencies": {
"@types/node": "^17.0.45",
"eslint": "^8.22.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"resolutions": {
"nth-check": "2.0.1",
"terser": "5.14.2",
"minimatch": "3.1.2",
"@xmldom/xmldom": "0.8.4"
},
"scripts": {
"build": "yarn workspaces foreach -t run build",
"start": "yarn workspace @pokester/server run serve",
"g:clean": "cd $INIT_CWD && rimraf ./build",
"g:build": "cd $INIT_CWD && run g:clean && tsc",
"g:test": "cd $INIT_CWD && jest"
}
}