-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.98 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
{
"name": "sbtweema",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "NODE_ENV=production tsc && vite build",
"preview": "vite preview",
"eslint": "eslint --ignore-path .gitignore --ext .ts .",
"eslint:fix": "eslint --ignore-path .gitignore --ext .ts . --fix",
"stylelint": "stylelint --ignore-path .gitignore wp-content/themes/socialbrothers/**/*.scss",
"stylelint:fix": "stylelint --ignore-path .gitignore wp-content/themes/socialbrothers/**/*.scss --fix",
"prepare": "husky install",
"pretty": "prettier --config .prettierrc './wp-content/themes/socialbrothers' --write"
},
"lint-staged": {
"*.ts": [
"prettier --config .prettierrc './wp-content/themes/socialbrothers' --write",
"eslint --ignore-path .gitignore --ext .ts . --fix"
],
"*.scss": "stylelint --fix",
"*.php": "composer run format"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.4.2",
"@types/lodash": "^4.14.195",
"@types/node": "^17.0.45",
"@types/postcss-preset-env": "^7.7.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"postcss": "^8.4.25",
"postcss-preset-env": "^9.2.0",
"prettier": "^3.0.3",
"sass": "^1.63.6",
"stylelint": "^15.10.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^4.7.0",
"svelte": "^3.59.2",
"svelte-preprocess": "^5.0.4",
"tailwindcss": "^3.3.2",
"ts-standard": "^11.0.0",
"tsup": "^5.12.9",
"typescript": "^5.2.2",
"vite": "^4.4.3",
"vite-plugin-live-reload": "^3.0.2",
"vite-plugin-sass-glob-import": "^2.0.0",
"vite-plugin-stylelint": "^4.3.0"
},
"dependencies": {
"@wordpress/block-editor": "^9.8.0",
"@wordpress/blocks": "^11.21.0",
"@wordpress/core-data": "^4.14.0",
"@wordpress/hooks": "^3.37.0",
"@wordpress/icons": "^9.28.0",
"swiper": "^10.3.1"
},
"pnpm": {
"overrides": {
"lodash@<4.17.11": ">=4.17.11",
"underscore.string@<3.3.5": ">=3.3.5",
"braces@<2.3.1": ">=2.3.1",
"lodash@<4.17.5": ">=4.17.5",
"yargs-parser@>=6.0.0 <13.1.2": ">=13.1.2",
"got@<11.8.5": ">=11.8.5",
"trim@<0.0.3": ">=0.0.3",
"lodash@<4.17.12": ">=4.17.12",
"json5@<1.0.2": ">=1.0.2",
"glob-parent@<5.1.2": ">=5.1.2",
"lodash@<4.17.20": ">=4.17.20",
"trim-newlines@<3.0.1": ">=3.0.1",
"underscore@>=1.3.2 <1.12.1": ">=1.12.1",
"lodash@<4.17.21": ">=4.17.21"
}
}
}