forked from juspay/blend-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.75 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
{
"name": "blend-design-system",
"packageManager": "pnpm@10.12.4",
"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",
"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"
},
"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",
"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": {
"react-hook-form": "^7.62.0",
"react-phone-input-2": "^2.15.1"
}
}