-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.81 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
{
"name": "clashvibes",
"version": "1.0.0",
"description": "Hi. I'm a starter theme called clashvibes, or underscores, if you like. I'm a theme meant for hacking so don't use me as a Parent Theme. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.",
"author": "Raymond Thompson",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"Theme"
],
"homepage": "https://github.com/Automattic/clashvibes#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Automattic/clashvibes.git"
},
"bugs": {
"url": "https://github.com/Automattic/clashvibes/issues"
},
"devDependencies": {
"@wordpress/browserslist-config": "^5.32.0",
"@wordpress/scripts": "^27.0.0",
"browserslist": "^4.22.2",
"dir-archiver": "^2.1.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"prettier": "^3.2.4",
"rtlcss": "^4.1.1",
"stylelint": "^16.2.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-scss": "^6.0.0"
},
"rtlcssConfig": {
"options": {
"autoRename": false,
"autoRenameStrict": false,
"blacklist": {},
"clean": true,
"greedy": false,
"processUrls": false,
"stringMap": []
},
"plugins": [],
"map": false
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"scripts": {
"start": "wp-scripts start",
"build": "wp-scripts build",
"format": "wp-scripts format",
"check-engines": "wp-scripts check-engines",
"packages-update": "wp-scripts packages-update",
"watch": "node-sass ./assets/sass/ -o ./ --source-map true --output-style expanded --indent-type tab --indent-width 1 -w",
"compile:css": "node-sass assets/sass/ -o ./ && stylelint '*.css' || true && stylelint '*.css'",
"compile:rtl": "rtlcss style.css style-rtl.css",
"lint:scss": "wp-scripts lint-style './assets/sass/**/*.scss' --fix",
"lint:js": "wp-scripts lint-js './js/*.js' --fix",
"bundle": "dir-archiver --src . --dest ../clashvibes.zip --exclude .DS_Store .stylelintrc .eslintrc .git .gitattributes .github .gitignore postcss.config.js composer.json composer.lock node_modules vendor .babelrc package-lock.json package.json phpcs.xml.dist sass style.css.map .prettierrc .stylelintrc .editorconfig .vscode"
},
"dependencies": {
"@csstools/postcss-sass": "^5.1.1",
"autoprefixer": "^10.4.17",
"node-sass": "^9.0.0",
"postcss": "^8.4.33",
"postcss-preset-env": "^9.3.0",
"postcss-scss": "^4.0.9",
"react": "^18.2.0",
"stylelint-config-recommended": "^14.0.0"
}
}