-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.32 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "roulette",
"version": "0.0.0",
"description": "Roulette game monorepo app.",
"author": "Christian Barrios <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/christiandbf/roulette/issues",
"homepage": "https://github.com/christiandbf/roulette/blob/master/README.md",
"repository": "github.com:christiandbf/roulette.git",
"private": true,
"scripts": {
"build:api": "lerna run build --scope=@roulette/api --stream",
"start:api": "lerna run start --scope=@roulette/api --stream",
"dev:api": "concurrently \"lerna run build:watch --scope=@roulette/api --stream\" \"lerna run dev --scope=@roulette/api --stream\"",
"build": "lerna run build --stream",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"clean": "rimraf ./packages/**/dist ./packages/**/tsconfig.tsbuildinfo",
"clean:all": "rimraf ./packages/**/dist ./packages/**/tsconfig.tsbuildinfo ./packages/**/node_modules",
"lint": "eslint . --ext .ts --fix --ignore-path .gitignore",
"prettier-format": "prettier --config .prettierrc 'packages/**/*.ts' --write --ignore-path .gitignore",
"new-version": "cross-env HUSKY_SKIP_HOOKS=1 lerna version --conventional-commits",
"prepare": "husky install",
"diff": "lerna diff",
"release": "cross-env HUSKY_SKIP_HOOKS=1 lerna publish",
"cm": "cz",
"postinstall": "lerna bootstrap"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,json}": [
"prettier --config .prettierrc --write",
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"codecov": "^3.8.2",
"commitizen": "^4.2.3",
"concurrently": "^6.1.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.0.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.5.0",
"lerna": "^3.22.1",
"lint-staged": ">=10",
"npm-run-all": "^1.7.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
}
}