-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.42 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": "air-light",
"version": "10.2.0",
"description": "A minimalist WordPress starter theme.",
"author": "Digitoimisto Dude Oy (moro@dude.fi)",
"devDependencies": {
"@babel/core": "^7.29.6",
"@babel/eslint-parser": "^7.28.0",
"@babel/preset-env": "^7.28.3",
"@digitoimistodude/code-quality-checks": "^2.2.0",
"@digitoimistodude/stylelint-config": "^1.0.8",
"@hint/hint-axe": "^4.4.21",
"@hint/hint-button-type": "^3.0.23",
"@hint/hint-compat-api": "^4.5.8",
"@parcel/transformer-sass": "^2.15.4",
"@wordpress/babel-preset-default": "^8.29.0",
"@wordpress/scripts": "^30.27.0",
"browser-sync": "^3.0.4",
"caniuse-lite": "^1.0.30001737",
"concurrently": "^9.2.3",
"cssnano": "^7.1.1",
"cssnano-preset-advanced": "^7.0.9",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^17.0.0",
"hint": "^7.1.13",
"husky": "^9.1.7",
"npm-check-updates": "^18.0.3",
"npm-run-all": "^4.1.5",
"parcel": "^2.15.4",
"postcss": "^8.5.14",
"postcss-calc": "^10.1.1",
"postcss-scss": "^4.0.9",
"sass": "^1.91.0",
"stylelint": "^15.11.0"
},
"scripts": {
"dev": "concurrently -n \"CSS,JS,BLOCKS,SYNC\" \"node parcel/css-watch.js\" \"PARCEL_CONFIG=.parcelrc.watch parcel watch assets/src/js/front-end.js assets/src/js/editor.js --dist-dir assets/dist/js --no-source-maps --no-hmr --no-cache --log-level verbose\" \"node parcel/blocks-watch.js\" \"npm run browsersync\"",
"browsersync": "node parcel/browsersync.js",
"build": "npm-run-all build:styles build:js",
"build:styles": "parcel build assets/src/sass/front-end.scss assets/src/sass/editor.scss --dist-dir assets/dist/css --no-cache",
"build:js": "parcel build assets/src/js/front-end.js assets/src/js/editor.js --dist-dir assets/dist/js --no-cache",
"dev:styles": "POSTCSS_CONFIG=.postcssrc.dev parcel build assets/src/sass/front-end.scss assets/src/sass/editor.scss --dist-dir assets/dist/css --no-optimize --no-cache",
"dev:js": "parcel build assets/src/js/front-end.js assets/src/js/editor.js --dist-dir assets/dist/js --no-optimize --no-cache",
"lint": "eslint assets/src/js",
"lint:styles": "stylelint assets/src/sass/**/*.scss",
"phpcs": "phpcs"
},
"dependencies": {
"core-js": "^3.45.1",
"vnu-jar": "^24.10.17"
}
}