-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 4.68 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "banyu-design",
"version": "1.1.0",
"description": "Banyu design components library for React by JALA Tech",
"main": "index.js",
"scripts": {
"build": "turbo build --filter=!@jala-banyu/storybook",
"build:fast": "turbo build:fast --filter=!@jala-banyu/storybook",
"sb": "pnpm --filter @jala-banyu/storybook dev",
"build:sb": "pnpm --filter @jala-banyu/storybook build",
"start:sb": "pnpm --filter @jala-banyu/storybook start",
"clean": "pnpm turbo:clean && pnpm clean:jest && pnpm clean:node-modules && pnpm clean:lock && pnpm install --hoist",
"clean:node-modules": "rimraf ./apps/**/node_modules && rimraf ./packages/**/**/node_modules && rm -rf ./node_modules",
"clean:changelogs": "rimraf ./packages/**/**/CHANGELOG.md",
"clean:lock": "rm ./pnpm-lock.yaml",
"clean:jest": "jest --clearCache",
"create:cmp": "plop component",
"create:pkg": "plop package",
"create:hook": "plop hook",
"turbo:clean": "turbo clean && rimraf ./node_modules/.cache/turbo",
"turbo:graph": "pnpm build --graph=dependency-graph.png",
"test": "jest --verbose --config ./jest.config.js",
"version:add": "changeset add",
"version:gen": "changeset version",
"release:prod": "changeset publish",
"version:dev": "changeset version --snapshot dev-v2",
"release:dev": "changeset publish --snapshot --no-git-tag --tag dev-v2",
"postinstall": "husky install && pnpm --filter @jala-banyu/theme build",
"lint": "pnpm lint:pkg",
"lint:pkg": "eslint -c .eslintrc.json ./packages/**/**/*.{ts,tsx}",
"lint:fix": "eslint --fix -c .eslintrc.json ./packages/**/**/*.{ts,tsx}",
"typecheck": "turbo typecheck",
"lint:docs-fix": "eslint --fix -c .eslintrc.json ./apps/docs/**/*.{ts,tsx}",
"check:rap": "tsx scripts/check-rap-updates.ts",
"format:check": "prettier --check packages/**/**/src --cache",
"format:write": "prettier --write packages/**/**/src --cache"
},
"keywords": [
"banyu",
"react",
"design system"
],
"license": "MIT",
"author": {
"name": "Muhammad Amien",
"email": "muhammadamien23@gmail.com"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@changesets/types": "^6.0.0",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@react-bootstrap/babel-preset": "^2.2.0",
"@react-types/link": "^3.5.2",
"@react-types/shared": "^3.22.0",
"@swc-node/jest": "^1.6.8",
"@swc/core": "^1.3.103",
"@swc/jest": "^0.2.29",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.3",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"chalk": "^5.3.0",
"commitlint-plugin-function-rules": "^1.7.1",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-ts-lambdas": "^1.2.3",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"glob": "^10.3.10",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^13.0.3",
"npm-check-updates": "^16.14.14",
"plop": "^4.0.1",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"turbo": "^1.11.3",
"typescript": "^4.9.5"
},
"pnpm": {
"overrides": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
},
"engines": {
"node": ">=16.x",
"pnpm": ">=8.x"
},
"packageManager": "pnpm@8.7.0",
"dependencies": {
"@jala-banyu/icons": "^1.0.7"
}
}