-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.69 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"description": "PUIK - PrestaShop UI kit.",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"docs",
"play"
],
"engines": {
"node": ">= v18.16.0"
},
"scripts": {
"cz": "git-cz",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "pnpm --parallel --filter './packages/**' build",
"build:components": "pnpm --filter @prestashopcorp/puik-components build",
"build:web": "pnpm --filter @prestashopcorp/puik-web-components build",
"build:theme": "pnpm --filter @prestashopcorp/puik-theme build",
"lint": "eslint . --ext .vue,.js,.ts,",
"lint:fix": "eslint --fix . --ext .vue,.js,.ts",
"docs:dev": "pnpm --filter @prestashopcorp/puik-docs dev",
"build-storybook": "pnpm --filter @prestashopcorp/puik-docs build",
"chromatic": "chromatic",
"dev": "pnpm --filter @prestashopcorp/puik-playground dev",
"component": "hygen component new",
"pack:all": "pnpm -r --parallel --filter './packages/**' exec pnpm pack --pack-destination ../../packages-tars/tmp && scripts/increment_versions.sh",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm -y"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{vue,js,ts}": "eslint --fix"
},
"browserslist": [
"> 1%",
"not ie 11",
"not op_mini all"
],
"dependencies": {
"@prestashopcorp/puik": "workspace:*",
"@prestashopcorp/puik-components": "workspace:*",
"@prestashopcorp/puik-locale": "workspace:*",
"@prestashopcorp/puik-resolver": "workspace:*",
"@prestashopcorp/puik-tailwind-preset": "workspace:*",
"@prestashopcorp/puik-theme": "workspace:*",
"@prestashopcorp/puik-utils": "workspace:*",
"@prestashopcorp/puik-web-components": "workspace:*"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@faker-js/faker": "^8.4.1",
"@prestashopcorp/eslint-config-ts": "^0.2.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/node": "^20.12.12",
"@vitejs/plugin-vue": "^4.6.2",
"@vitest/coverage-v8": "^1.6.0",
"@vue/test-utils": "^2.4.6",
"chromatic": "^10.9.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-vue": "9.19.2",
"fast-glob": "^3.3.2",
"husky": "^8.0.3",
"hygen": "^6.2.11",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.2",
"sass": "^1.77.1",
"typescript": "^5.4.5",
"vite": "^5.2.14",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0",
"vue": "3.3.10"
}
}