-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
63 lines (63 loc) · 2.01 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
{
"name": "nyxb-ui",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"build:cli": "turbo --filter=nyxbui build",
"build:registry": "pnpm --filter=web build:registry",
"build:env": "pnpm --filter=web build:env",
"dev": "turbo run dev --parallel",
"web:dev": "pnpm --filter=web dev",
"cli:dev": "turbo --filter=nyxbui dev",
"cli:start": "pnpm --filter=nyxbui start:dev",
"nyxb:dev": "turbo --filter=nyxb dev",
"nyxb:build": "turbo --filter=nyxb build",
"nyxb:test": "turbo --filter=nyxb test",
"preview": "turbo run preview",
"sync:templates": "./scripts/sync-templates.sh \"templates/*\"",
"typecheck": "turbo run typecheck",
"pub:beta": "cd packages/cli && pnpm pub:beta",
"pub:release": "cd packages/cli && pnpm pub:release",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test --force"
},
"dependencies": {
"@eslint-react/eslint-plugin": "^1.5.12",
"@nyxb/eslint-config": "^3.0.8",
"@types/cli-progress": "^3.11.5",
"autoprefixer": "^10.4.19",
"cli-progress": "^3.12.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "9.2.0",
"eslint-plugin-format": "^0.1.1",
"eslint-plugin-react-hooks": "5.1.0-rc-3f1436cca1-20240516",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-tailwindcss": "^3.17.4",
"postcss": "^8",
"prettier": "^2.8.8",
"pretty-quick": "^4.0.0",
"puppeteer": "^23.9.0",
"scroll-into-view-if-needed": "^3.1.0",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.15.5",
"turbo": "^2.0.4",
"unified": "^11.0.5",
"vfile": "^6.0.3",
"vite": "^5.4.1",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^2.0.5"
},
"devDependencies": {
"@types/cli-progress": "^3.11.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv": "^16.4.5",
"postcss-nesting": "^13.0.1",
"typescript": "^5.4.5"
}
}