-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "mc-wp-starter-plugin",
"version": "1.0.0",
"description": "Starter wordpress plugin",
"author": "Modern Climate",
"repository": {
"type": "git",
"url": "git+https://github.com/ModernClimate/mc-wp-starter-plugin.git"
},
"license": "MIT",
"engines": {
"node": ">= 17.7.1"
},
"type": "module",
"devDependencies": {
"typescript": "^5.0.3",
"vite": "^4.2.1"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"pre-commit": "^1.2.2",
"prettier": "^2",
"prettier-plugin-css-order": "^1.3.0",
"sass": "^1.55.0",
"stylelint": "^14.13.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^28.0.0"
},
"pre-commit": "lint",
"scripts": {
"build": "tsc && vite build",
"dev": "APP_ENV=development tsc && vite",
"lint": "yarn lint:format && yarn lint:fix ",
"lint:fix": "eslint ./assets --ext .js,.ts, --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,ts,css,scss,php,md,json}\" ",
"postinstall": "composer install && yarn run build",
"watch": "tsc && vite build --watch"
}
}