This repository has been archived by the owner on May 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.6 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
{
"name": "@studiometa/wordpress-project",
"version": "0.0.0",
"scripts": {
"dev": "meta dev",
"watch": "meta watch",
"build": "meta build",
"lint": "npm run lint:scripts && npm run lint:styles && npm run lint:templates",
"lint:scripts": "eslint web/wp-content/themes/studiometa/src/js --ext=.js,.vue",
"lint:styles": "stylelint 'web/wp-content/themes/studiometa/src/**/*.(scss|vue)'",
"lint:templates": "prettier -c web/wp-content/themes/studiometa/templates/**/*.twig",
"fix": "npm run fix:scripts && npm run fix:styles && npm run fix:templates",
"fix:scripts": "npm run lint:scripts -- --fix",
"fix:styles": "npm run lint:styles -- --fix",
"fix:templates": "npm run lint:templates -- --write"
},
"author": "Studio Meta <agence@studiometa.fr> (https://www.studiometa.fr)",
"license": "MIT",
"devDependencies": {
"@studiometa/browserslist-config": "^1.0.1",
"@studiometa/eslint-config": "^3.1.1",
"@studiometa/prettier-config": "^2.1.1",
"@studiometa/prettier-formatter-gitlab": "^1.1.2",
"@studiometa/stylelint-config": "^3.0.0",
"@studiometa/tailwind-config": "^2.0.2",
"@studiometa/webpack-config": "^4.2.1",
"eslint": "^8.38.0",
"eslint-formatter-gitlab": "^3.0.0",
"postcss": "^8.4.22",
"prettier": "^2.8.7",
"prettier-plugin-twig-melody": "^0.4.6",
"stylelint": "^14.16.1",
"stylelint-formatter-gitlab": "^1.0.2",
"tailwindcss": "^3.3.1"
},
"dependencies": {
"@studiometa/js-toolkit": "^2.10.2",
"@studiometa/ui": "^0.2.31"
},
"browserslist": [
"extends @studiometa/browserslist-config"
]
}