-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.77 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.77 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
{
"name": "blend-design-system",
"packageManager": "pnpm@10.21.0",
"private": true,
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"clean": "turbo run clean && rm -rf node_modules dist apps/ascent/out apps/storybook/storybook-static",
"storybook": "turbo run storybook",
"storybook:build": "turbo run build-storybook",
"storybook:preview": "turbo run preview-storybook",
"ascent:dev": "turbo run dev --filter=ascent",
"ascent:build": "turbo run build --filter=ascent",
"build:ascent": "cd apps/ascent && npm run build",
"build:storybook": "cd apps/storybook && pnpm build-storybook",
"build:all": "npm run build:ascent && npm run build:storybook",
"deploy:dev": "./deploy.sh dev",
"deploy:prod": "./deploy.sh prod",
"changeset": "changeset",
"changeset:version": "changeset version",
"release": "turbo run build --filter=ascent^... && changeset publish",
"format": "prettier --write .",
"format:check": "prettier --check .",
"fix:all": "prettier --write . && pnpm lint:fix",
"prepare": "husky",
"build:blend": "cd packages/blend && pnpm build",
"publish:blend": "cd packages/blend && npm publish --access public",
"publish:blend:dry": "cd packages/blend && npm publish --dry-run --access public",
"version:blend": "cd packages/blend && npm version",
"yalc:publish": "cd packages/blend && yalc publish",
"yalc:push": "cd packages/blend && pnpm build && yalc push",
"figma:validate": "figma connect validate",
"figma:publish": "figma connect publish",
"figma:unpublish": "figma connect unpublish",
"test:blend": "cd packages/blend && pnpm test",
"test:blend:ui": "cd packages/blend && pnpm test:ui",
"test:blend:coverage": "cd packages/blend && pnpm test:coverage",
"test:blend:watch": "cd packages/blend && pnpm test:watch",
"test:blend:run": "cd packages/blend && pnpm test:run",
"test:a11y": "cd packages/blend && pnpm test:a11y",
"test:a11y:watch": "cd packages/blend && pnpm test:a11y:watch",
"test:a11y:file": "cd packages/blend && pnpm test:file",
"token-studio": "blend-studio",
"test:token-studio:npm-smoke": "node ./scripts/token-studio-npm-smoke.mjs",
"test:token-studio:release-gate": "pnpm --filter @juspay/blend-design-system build && pnpm --filter blend-studio build",
"chromatic": "cd apps/storybook && pnpm chromatic",
"chromatic:ci": "cd apps/storybook && pnpm chromatic:ci",
"sync-changelog": "node --env-file=.env scripts/sync-changelog.mjs",
"sync-changelog:latest": "node --env-file=.env scripts/sync-changelog.mjs --latest",
"sync-changelog:force": "node --env-file=.env scripts/sync-changelog.mjs --force"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.31.0",
"@figma/code-connect": "^1.3.4",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"blend-studio": "workspace:*",
"eslint": "^9.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"turbo": "^2.5.4",
"typescript-eslint": "^8.37.0"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"react-hook-form": "^7.62.0",
"react-phone-input-2": "^2.15.1"
}
}