-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.78 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.78 KB
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
{
"name": "pol-flags",
"version": "0.0.2",
"description": "",
"main": "index.js",
"type": "module",
"author": {
"name": "Pol Gubau Amores",
"url": "https://polgubau.com"
},
"license": "MIT",
"homepage": "https://flags.polgubau/",
"repository": {
"type": "git",
"url": "git+https://github.com/PolGubau/pol-flags.git"
},
"bugs": {
"url": "https://github.com/PolGubau/pol-flags/issues"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"--------------------------------------------------------------- GENERAL ---------": "---------------------------------------------",
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"format": "prettier --write .",
"--------------------------------------------------------------- FILTERS ---------": "---------------------------------------------",
"flags": "pnpm --filter react-beauty-flags",
"landing": "pnpm --filter flags-landing",
"--------------------------------------------------------------- FLAGS ---------": "---------------------------------------------",
"storybook": "pnpm flags storybook",
"flags:test": "pnpm flags test",
"flags:build": "pnpm flags build",
"flags:watch": "pnpm flags build-watch",
"flags:lint": "pnpm flags lint",
"flags:coverage": "pnpm flags test:coverage",
"--------------------------------------------------------------- DOCS ---------": "---------------------------------------------",
"docs:dev": "pnpm landing dev",
"build:docs": "pnpm landing build",
"--------------------------------------------------------------- EXTRA ---------": "---------------------------------------------",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"preview": "turbo run preview",
"typecheck": "turbo run typecheck",
"format:write": "turbo run format:write",
"format:check": "turbo run format:check",
"prepare": "husky install",
"check": "turbo lint typecheck format:check",
"test": "turbo run test --force",
"open:ide": "pnpm i && pnpm flags build && pnpm landing dev"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix"
],
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [
"react",
"ui",
"components",
"next",
"library",
"design",
"system",
"tailwindcss",
"vite",
"typescript",
"pol",
"polgubau",
"pol-ui",
"pol-ui-cli",
"pol-ui-docs"
],
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/compat": "^1.0.3",
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.11.27",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.22",
"eslint": "~9.4.0",
"eslint-config-next": "13.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^1.9.9",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-tailwindcss": "^3.12.0",
"globals": "^15.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.3.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0",
"tsup": "^6.4.0"
},
"dependencies": {
"@babel/core": "^7.22.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@manypkg/cli": "^0.20.0",
"@typescript-eslint/parser": "^5.59.7",
"autoprefixer": "^10.4.14",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"glob": "^10.4.1",
"postcss": "^8.4.24",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.5",
"tsx": "^4.1.4",
"turbo": "^1.9.9",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.31.1"
}
}