-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.44 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.44 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
{
"name": "design-system-starter-kit",
"version": "1.0.0",
"private": true,
"description": "Production-ready white-label design system starter kit",
"author": "Jeffrey Lauwers",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jeffreylauwers/design-system-starter-kit.git"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"build": "pnpm build:tokens && pnpm build:core && pnpm build:components && pnpm build:storybook",
"build:tokens": "pnpm --filter @dsn/design-tokens build",
"build:core": "pnpm --filter @dsn/core build",
"build:components": "pnpm --filter @dsn/components-html build && pnpm --filter @dsn/components-react build && pnpm --filter @dsn/components-web build",
"build:storybook": "pnpm --filter @dsn/storybook build",
"dev": "pnpm --filter @dsn/storybook dev",
"storybook": "pnpm --filter @dsn/storybook dev",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"type-check": "pnpm -r type-check",
"clean": "pnpm -r clean && rm -rf node_modules",
"prepare": "husky install"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jsdom": "^27.4.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.3.3",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,scss,md}": [
"prettier --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"packageManager": "pnpm@10.11.1+sha512.e519b9f7639869dc8d5c3c5dfef73b3f091094b0a006d7317353c72b124e80e1afd429732e28705ad6bfa1ee879c1fce46c128ccebd3192101f43dd67c667912"
}