-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) ยท 2.41 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
60
{
"name": "@nextunicorn/monorepo",
"packageManager": "[email protected]",
"version": "0.0.1",
"workspaces": [
"docs/*",
"packages/*",
"internal/*"
],
"homepage": "https://github.com/nextunicorn-inc/nu-packages",
"bugs": "https://github.com/nextunicorn-inc/nu-packages/issues",
"repository": "git://github.com/nextunicorn-inc/nu-packages.git",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Nextunicorn Inc",
"engines": {
"node": "^14.15.0 || >=16.10.0",
"yarn": ">=1.22.4 <2",
"npm": "Please use yarn instead of NPM to install dependencies"
},
"scripts": {
"postinstall": "husky install",
"//0": "======================================================================================================================[ run special package ]",
"icon": "yarn workspace @nextunicorn/icons",
"types": "yarn workspace @nextunicorn/types",
"ui": "yarn workspace @nextunicorn/ui",
"utils": "yarn workspace @nextunicorn/utils",
"//1": "========================================================================================================================[ run all workspace ]",
"build": "yarn workspaces foreach -vit --include \"{@nextunicorn/types,@nextunicorn/icons,@nextunicorn/utils}\" run build && yarn ui build",
"//2": "========================================================================================================================[ build docs ]",
"docs:build:react-icons": "yarn workspace @nextunicorn/react-icons build"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@emotion/eslint-plugin": "^11.10.0",
"@next/eslint-plugin-next": "^12.2.5",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"@yarnpkg/sdks": "^3.0.0-rc.18",
"eslint": "^8.22.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-testing-library": "^5.6.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
}
}