-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 845 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": "chess-game-solo",
"version": "1.0.0",
"description": "Chess game",
"workspaces": [
"client",
"game-engine"
],
"scripts": {
"postinstall": "sh link-packages.sh",
"start": "cd ./client && npm start",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"build:engine": "cd ./game-engine && npm run build",
"build": "sh build.sh"
},
"keywords": [
"chess",
"typescript",
"unit-tests"
],
"author": "mterczynski",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21",
"typescript": "^4.4.3"
},
"devDependencies": {
"@types/lodash": "^4.14.175",
"@types/jest": "^27.0.2",
"jest": "^27.2.4",
"ts-jest": "^27.0.5"
}
}