forked from Onemind-Services-LLC/react-icons-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.23 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
{
"name": "react-icons-root",
"description": "Root configuration for react-icons project with monorepo structure.",
"private": true,
"workspaces": [
"packages/*"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"lerna": "^8.1.7",
"prettier": "^3.3.3"
},
"scripts": {
"clean": "yarn clean:root && yarn clean:preview && yarn clean:react-icons && yarn clean:ts-test && yarn clean:webpack5",
"clean:root": "rm -rfv node_modules",
"clean:preview": "rm -rfv packages/preview/{.next,out}",
"clean:react-icons": "rm -rfv packages/react-icons/{build,icons,VERSIONS}",
"clean:ts-test": "rm -rfv packages/ts-test/build",
"clean:webpack5": "rm -rfv packages/webpack5-test/dist",
"format": "prettier --write --ignore-unknown .",
"format:ci": "prettier --check --ignore-unknown .",
"lint": "eslint .",
"lerna": "lerna",
"version": "yarn install && git add .",
"version-snapshot": "lerna version --no-push --no-git-tag-version --yes --preid snapshot prepatch --force-publish",
"version-up": "lerna version"
}
}