-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.43 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.43 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
{
"name": "mc-wp-starter-theme",
"version": "3.2.2",
"description": "Starter wordpress theme",
"author": "Modern Climate",
"repository": {
"type": "git",
"url": "git+https://github.com/ModernClimate/mc-wp-starter-theme.git"
},
"license": "MIT",
"engines": {
"node": ">= 18.12.0"
},
"type": "module",
"devDependencies": {
"typescript": "^4.6.4",
"vite": "^4.4.9"
},
"dependencies": {
"@types/uikit": "^3.14.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"autoprefixer": "^10.4.12",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"postcss": "^8.4.29",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"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",
"uikit": "^3.16.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 --ignore-platform-reqs && yarn run build",
"watch": "tsc && vite build --watch"
}
}