-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "bcr-wordpress-theme",
"version": "1.3.0",
"private": true,
"scripts": {
"build": "tsx scripts/build.ts",
"version": "tsx scripts/sync-version.ts",
"lint:types": "tsc --noEmit",
"lint:styles": "stylelint 'src/**/*.scss' 'blocks/**/*.scss'",
"lint:format": "prettier --check 'src/**/*.{ts,scss}' 'blocks/**/*.scss' 'scripts/**/*.ts'",
"format": "prettier --write 'src/**/*.{ts,scss}' 'blocks/**/*.scss' 'scripts/**/*.ts'",
"lint": "run-s lint:*",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed --workers=1 --project=chromium",
"postinstall": "playwright install"
},
"browserslist": [
"> 0.2%",
"last 4 versions",
"not dead"
],
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all"
},
"stylelint": {
"extends": "stylelint-config-standard-scss",
"rules": {
"selector-class-pattern": null,
"custom-property-pattern": null,
"no-descending-specificity": null
}
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/jquery": "^4.0.0",
"@types/node": "^22",
"browserslist": "^4",
"esbuild": "^0.27.3",
"lightningcss": "^1.29",
"npm-run-all2": "^7",
"prettier": "^3.8.1",
"sass": "^1.86",
"stylelint": "^16",
"stylelint-config-standard-scss": "^14",
"tsx": "^4",
"typescript": "^5"
}
}