-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.33 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
64
65
{
"name": "@syntatis/monorepo",
"description": "Classic WordPress Admin UI",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"workspaces": [
"packages/*",
"website"
],
"devDependencies": {
"@storybook/addon-a11y": "^8.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/addon-mdx-gfm": "^8.0.0",
"@storybook/addon-themes": "^8.0.5",
"@storybook/blocks": "^8.0.0",
"@storybook/manager-api": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@storybook/test": "^8.0.0",
"@storybook/theming": "^8.0.0",
"@syntatis/eslint-config": "file:./packages/eslint-config",
"@syntatis/kubrick": "file:./packages/kubrick",
"@syntatis/kubrick-dev": "file:./packages/kubrick-dev",
"@syntatis/stylelint-config": "file:./packages/stylelint-config",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@wordpress/icons": "^10.4.0",
"chromatic": "^11.0.0",
"eslint": "^8.55.0",
"eslint-plugin-storybook": "^0.8.0",
"lerna": "^8.1.8",
"prettier": "^3.2.4",
"storybook": "^8.0.0",
"stylelint": "^16.2.0",
"typescript": "^5.3.3"
},
"scripts": {
"build": "npm run build -w @syntatis/kubrick -w @syntatis/kubrick-dev",
"chromatic": "chromatic --build-script-name=storybook:build",
"format": "npm run format:scripts && npm run format:styles",
"format:scripts": "eslint . --fix",
"format:styles": "stylelint '**/*.scss' --fix",
"lint": "npm run lint:scripts && npm run lint:styles && npm run lint:types",
"lint:scripts": "eslint .",
"lint:styles": "stylelint '**/*.scss'",
"lint:types": "tsc --noEmit",
"storybook": "storybook dev -p 6007",
"storybook:build": "storybook build",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"test:watch": "npm run test:watch ---workspaces --if-present",
"website:build": "npm run build -w @syntatis/website",
"website:dev": "npm run dev -w @syntatis/website",
"website:preview": "npm run preview -w @syntatis/website"
}
}