-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
98 lines (98 loc) · 3 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "root",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "pnpm --recursive --parallel clean",
"commit-cli": "cz",
"preinstall": "npx only-allow pnpm",
"lintfix": "pnpm --recursive --parallel lintfix",
"precommit": "lint-staged",
"prepare": "husky",
"reconstruct": "pnpm dlx rimraf packages/*/node_modules packages/*/.turbo node_modules && npm run setup && echo done",
"setup": "pnpm install",
"start": "turbo run build --filter=!@coveord/plasma-website && pnpm --recursive --parallel start",
"test": "turbo run test --concurrency=1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/package.json": [
"sort-package-json"
],
"**/*.{js,jsx,ts,tsx,mjs,json,md,yml,html}": [
"prettier --write"
],
"**/*.{scss,css}": [
"stylelint --fix",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"browserslist": [
"cover 90%",
"last 1 versions",
"IE 11",
"not dead"
],
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@coveo/semantic-monorepo-tools": "2.6.2",
"@sindresorhus/slugify": "2.2.1",
"@types/node": "22.10.7",
"@vitest/eslint-plugin": "1.1.25",
"aws-sdk": "2.1692.0",
"chokidar": "4.0.3",
"commitizen": "4.3.1",
"conventional-changelog-angular": "8.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.18.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-jsdoc": "50.6.2",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.18",
"eslint-plugin-testing-library": "7.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.4.1",
"mime-types": "2.1.35",
"postcss": "8.5.1",
"prettier": "3.4.2",
"sort-package-json": "2.14.0",
"stylelint": "16.13.2",
"stylelint-config-standard-scss": "14.0.0",
"turbo": "2.3.3",
"typescript": "5.7.3",
"typescript-eslint": "8.20.0",
"underscore": "1.13.7",
"walkdir": "0.4.1"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react-native"
]
},
"overrides": {
"@babel/traverse": "^7.23.2",
"nwsapi": "2.2.16"
},
"patchedDependencies": {
"@stencil/core": "patches/@stencil__core.patch"
}
}
}