-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·47 lines (47 loc) · 1.45 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
{
"name": "apps",
"version": "0.0.0",
"description": "Monorepo that holds all services",
"private": true,
"scripts": {
"bootstrap": "lerna exec npm i",
"bootstrap:ci": "lerna exec npm ci -- --ignore-scripts",
"build": "lerna run build",
"clean": "lerna run clean",
"lint": "node node_modules/.bin/prettier --check \"**/*.{js,json,ts,yml,yaml}\"",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"prettier": "node node_modules/.bin/prettier --check \"**/*.{js,json,ts,yml,yaml}\"",
"prettier:write": "node node_modules/.bin/prettier --write \"**/*.{js,json,ts,yml,yaml}\"",
"release": "lerna publish --loglevel 5",
"release:ci": "lerna publish from-git --loglevel 5 --yes"
},
"keywords": [],
"license": "UNLICENSED",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.6.0",
"fbjs-scripts": "^3.0.1",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}