-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.76 KB
/
package.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.76 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
48
49
50
51
52
53
54
55
56
{
"name": "webtheme",
"description": "Webtheme is the default theme for the Webship.co portal site.",
"license": "GPL-2.0",
"private": true,
"engines": {
"yarn": ">= 1.6",
"node": ">= 20.0"
},
"scripts": {
"theme:build": "node scripts/css/postcss-build.js",
"theme:watch": "node scripts/css/postcss-watch.js",
"phpcs": "phpcs --standard=./.phpcs.xml .",
"phpcbf": "phpcbf --standard=./.phpcs.xml .",
"lint:yaml": "node ./node_modules/eslint/bin/eslint.js --config=.eslintrc.json --ext .yml .",
"lint:js": "node ./node_modules/eslint/bin/eslint.js --config=.eslintrc.json .",
"lint:css": "npx stylelint --config=.stylelintrc.json .",
"test": "cucumber-js --config cucumber.js",
"test:headed": "HEADLESS=false cucumber-js --config cucumber.js"
},
"devDependencies": {
"chalk": "^4.1.0",
"chokidar": "^3.6.0",
"eslint": "~8",
"eslint-config-airbnb-base": "~15",
"eslint-config-prettier": "~8",
"eslint-plugin-import": "~2",
"eslint-plugin-prettier": "~4",
"eslint-plugin-yml": "~1",
"glob": "^7.1.2",
"minimist": "^1.2.2",
"postcss": "^7.0.18",
"postcss-calc": "^7.0.1",
"postcss-header": "^2.0.0",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"postcss-pxtorem": "^5.1.1",
"postcss-url": "^8.0.0",
"prettier": "~2",
"stylelint": "~15",
"stylelint-config-standard": "~33",
"stylelint-order": "~6",
"webship-js": "~2.0"
},
"browserslist": [
"last 2 Chrome major versions",
"last 2 Firefox major versions",
"last 2 Safari major versions",
"last 2 Edge major versions",
"last 2 Opera versions",
"last 2 iOS major versions",
"last 1 ChromeAndroid version",
"Firefox ESR"
],
"packageManager": "yarn@4.9.4"
}