forked from jeremybarbet/iap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.02 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
{
"name": "iap",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"lint": "yarn lint:tsc && yarn lint:eslint && yarn lint:prettier",
"lint:tsc": "lerna run lint:tsc",
"lint:eslint": "eslint --fix '**/*.ts'",
"lint:prettier": "prettier --write \"packages/**/*.{ts,json,md}\"",
"format": "git ls-files -m | xargs yarn prettier --write --ignore-unknown --no-error-on-unmatched-pattern",
"prepare": "yarn build",
"release": "env $(cat .env | xargs) lerna publish --no-private",
"release:ci": "lerna publish --yes --no-private"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"conventional-changelog-conventionalcommits": "6.1.0",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-simple-import-sort": "9.0.0",
"lerna": "7.1.4",
"nx": "16.5.2",
"prettier": "3.0.0",
"typescript": "5.1.6"
}
}