-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.61 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
{
"name": "blogster",
"description": "Crosspost to Medium and Dev.to automagically",
"repository": "[email protected]:maximegel/blogster.git",
"author": "Maxime Gélinas <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bgs": "ts-node --project packages/cli/tsconfig.lib.json -r tsconfig-paths/register packages/cli/src/cli.ts",
"test": "jest --config=jest.config.spec.js",
"e2e": "jest --config=jest.config.e2e.js --runInBand --silent",
"build": "lerna run build",
"clean": "lerna run clean",
"format": "yarn format:check --write",
"format:check": "prettier **/*.{js,jsx,ts,tsx,md,html,css}",
"lint": "eslint . --max-warnings=0",
"lint:fix": "yarn lint --fix",
"release": "dotenv -- lerna publish"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"lerna": "^3.22.1",
"lint-staged": "^10.5.1",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.2"
}
}