-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.75 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"author" : "Krisztian Pinter <kpinter@brainsum.com>",
"description" : "Drupal 11 coding standards ready startertheme without any dependency (base theme).",
"devDependencies" : {
"@csstools/postcss-global-data" : "^4.0.0",
"@eslint/js" : "^9.39.1",
"autoprefixer" : "^10.4.22",
"baseline-browser-mapping" : "^2.10.0",
"browserslist" : "^4.28.1",
"concurrently" : "^9.1.2",
"cpx2" : "^8.0.0",
"cssnano" : "^7.1.2",
"eslint" : "^9.39.1",
"eslint-config-prettier" : "^10.1.8",
"eslint-plugin-import" : "^2.32.0",
"eslint-plugin-jsdoc" : "^61.4.1",
"globals" : "^16.5.0",
"onchange" : "^7.1.0",
"postcss" : "^8.5.6",
"postcss-cli" : "^11.0.1",
"postcss-custom-media" : "^12.0.0",
"postcss-inline-svg" : "^6.0.0",
"postcss-preset-env" : "^10.4.0",
"postcss-scss" : "^4.0.9",
"postcss-sorting" : "^9.1.0",
"prettier" : "^3.6.2",
"sass" : "^1.94.2",
"stylelint" : "^16.26.0",
"stylelint-config-property-sort-order-smacss" : "^10.0.0",
"stylelint-config-standard-scss" : "^16.0.0",
"stylelint-order" : "^7.0.0",
"stylelint-scss" : "^6.12.1",
"stylelint-use-logical" : "^2.1.2"
},
"keywords" : [
"Drupal",
"Drupal11",
"ES6",
"php",
"Sass",
"Shake.sass",
"PostCSS",
"theme",
"Twig"
],
"license" : "ISC",
"name" : "brainsum_starterkit",
"private" : true,
"repository" : {
"type" : "git",
"url" : "https://github.com/brainsum/brainsum-starterkit.git"
},
"scripts" : {
"_dev:css" : "yarn sass:dev && yarn postcss:dev",
"_dev:js" : "yarn js:copy",
"build" : "yarn lint:fix && yarn sass:prod && yarn postcss:prod && yarn js:copy",
"format" : "prettier --write 'src/**/*.{scss,js}'",
"format:check" : "prettier --check 'src/**/*.{scss,js}'",
"format:css" : "prettier --write 'src/sass/**/*.scss'",
"format:js" : "prettier --write 'src/js/**/*.js'",
"js:copy" : "cpx 'src/js/**/*.js' js/",
"lint:check" : "yarn format:check && yarn lint:css && yarn lint:js",
"lint:css" : "stylelint 'src/sass/**/*.scss'",
"lint:fix" : "yarn format && yarn lint:css --fix && yarn lint:js:fix",
"lint:js" : "eslint src/js/",
"lint:js:fix" : "eslint src/js/ --fix",
"postcss:dev" : "postcss 'css/**/*.css' --replace",
"postcss:prod" : "postcss 'css/**/*.css' --replace --env production",
"sass:dev" : "sass src/sass:css --style=expanded --source-map",
"sass:prod" : "sass src/sass:css --style=compressed --no-source-map",
"start" : "concurrently -n css,js -c cyan,yellow 'yarn watch:css' 'yarn watch:js'",
"watch:css" : "onchange -i 'src/sass/**/*.{scss,css}' -- yarn _dev:css",
"watch:js" : "onchange -i 'src/js/**/*.js' -- yarn _dev:js"
},
"type" : "module",
"version" : "5.0.0"
}