-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.14 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
{
"name": "@boergrp/missing-locales",
"version": "0.0.0",
"private": true,
"type": "module",
"author": "Maxx Borer <[email protected]>",
"description": "Plugins and CLI that helps you find missed keys in your localization files.",
"keywords": [
"vite",
"cli",
"i18n",
"localization",
"locale",
"missing",
"keys"
],
"license": "MIT",
"engines": {
"node": "^16.0.0 || >=18"
},
"scripts": {
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"test": "nx run-many --target=test --all --parallel",
"build": "nx run-many --target=build --all --parallel",
"publish": "NPM_TOKEN=$NPM_TOKEN nx run-many --target=publish --all --parallel",
"prerelease": "pnpm i && pnpm run lint && pnpm run test && pnpm run build",
"graph": "nx graph",
"clear:lock": "nx run-many --target=clear:lock --all --parallel",
"clear:node_modules": "nx run-many --target=clear:node_modules --all --parallel",
"clear:dependencies": "nx run-many --target=clear:dependencies --all --parallel",
"reinstall": "pnpm run clear:lock && pnpm run clear:node_modules && pnpm run clear:dependencies && pnpm ip",
"alpha": "pnpm run prerelease && node ./scripts/semver alpha",
"beta": "pnpm run prerelease && node ./scripts/semver beta",
"patch": "pnpm run prerelease && node ./scripts/semver patch",
"minor": "pnpm run prerelease && node ./scripts/semver minor",
"major": "pnpm run prerelease && node ./scripts/semver major"
},
"devDependencies": {
"@babel/core": "7.20.7",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"babel-jest": "29.3.1",
"eslint": "8.30.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.7",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"nx": "15.4.2",
"prettier": "2.8.1",
"semver": "^7.3.8",
"typescript": "4.9.4"
}
}