-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "draughts-server",
"version": "0.0.0",
"engines": {
"node": "14.15.1"
},
"devDependencies": {
"@types/jest": "~26.0.15",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "~4.7.0",
"@typescript-eslint/parser": "~4.7.0",
"eslint": "~7.13.0",
"eslint-config-prettier": "~6.15.0",
"eslint-plugin-jest": "~24.1.3",
"jest": "~26.6.3",
"prettier": "~2.1.2",
"rimraf": "~3.0.2",
"ts-jest": "~26.4.4",
"tsconfig-paths": "^3.9.0",
"tsutils": "~3.17.0",
"typescript": "~4.0.5"
},
"scripts": {
"start": "node build/src/main.js",
"start:ts": "ts-node -T -r tsconfig-paths/register src/main.ts",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Jan Burda",
"license": "Apache-2.0",
"dependencies": {
"@types/express": "^4.17.9",
"@types/socket.io": "^2.1.12",
"express": "^4.17.1",
"immer": "^8.0.0",
"module-alias": "^2.2.2",
"socket.io": "^3.0.5",
"tslib": "~2.0.3",
"uuid": "^8.3.2"
}
}