-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.4 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
{
"name": "@card-game/root",
"private": true,
"description": "",
"author": "Alexey Vykhrystyuk <AVykhrystyuk@gmail.com>",
"license": "MIT",
"scripts": {
"clean": "lerna clean --yes",
"bootstrap": "lerna bootstrap && lerna run build",
"start": "lerna run start",
"start:prod": "lerna run start:prod",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./jest-e2e.config.js",
"test:e2e:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand --config ./jest-e2e.config.js",
"build": "lerna run build",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint \"**/*.ts\" --fix"
},
"devDependencies": {
"@types/jest": "27.4.1",
"@types/node": "^17.0.23",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"rimraf": "^3.0.2",
"lerna": "^4.0.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
}
}