-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.18 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
{
"name": "pillar-monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"description": "A monorepo containing a comprehensive set of reusable UI components, React hooks,Icons, and other tools for modern web development. Built with accessibility, scalability, and best practices in mind, this monorepo streamlines the development process and makes it easier than ever to build robust, high-quality web applications.",
"author": {
"name": "Hamza Miloud Amar",
"email": "hamzamiloudamar@gmail.com"
},
"keywords": [
"react",
"typescript",
"design-system",
"user-interface",
"accessible",
"a11y",
"pillar-core",
"pillar-icons",
"pillar-hooks",
"ui-components",
"custom-hooks",
"icons"
],
"scripts": {
"build": "turbo run build",
"build:release": "turbo run build --filter=./packages/*",
"dev": "turbo run dev",
"info": "turbo run info",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"test": "turbo run test",
"type:check": "turbo run type:check",
"type:check:release": "turbo run type:check --filter=./packages/*",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"changeset:version": "changeset version",
"pre-commit": "lint-staged",
"prepare": "husky install",
"lint-staged": "lint-staged",
"lint-language": "alex .",
"prettier:base": "prettier --parser typescript --write",
"prettier:check": "yarn prettier:base --list-different \"packages/**/*.{ts,tsx}\"",
"prettier:write": "yarn prettier:base \"src/**/*.{ts,tsx}\"",
"validation": "yarn lint && yarn test",
"ci": "yarn build && yarn validation && yarn type:check",
"prerelease": "yarn build:release && yarn validation && yarn type:check:release",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"alex": "^11.0.1",
"eslint-config-custom": "*",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"turbo": "^2.0.14"
},
"packageManager": "yarn@4.3.1",
"dependencies": {
"@changesets/cli": "^2.27.7"
},
"version": "0.0.0"
}