-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.96 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
{
"name": "@innoq/innoq-styleguide",
"version": "17.3.13",
"description": "INNOQ's style guide and component library",
"license": "SEE LICENSE IN LICENSE",
"author": "INNOQ",
"homepage": "https://github.com/innoq/innoq-styleguide#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/innoq/innoq-styleguide.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "npm-run-all --parallel compile-watch server-watch",
"server": "fractal-fork start --port 3001",
"server-watch": "nodemon -I -w components -w docs -e 'html' -x 'npm run server'",
"cms-dev-start": "npm run site && npm-run-all --parallel compile-watch server-watch cms-dev-watcher",
"cms-dev-watcher": "nodemon -I --ext js,scss,css -w components -w lib/styles -w lib/scripts -x ./scripts/cms-dev-watcher",
"compile": "npm-run-all compile:css compile:js compile:static",
"compile:css": "sass lib/styles/index-with-pages.scss:public/assets/bundle.css lib/styles/index.scss:public/assets/bundle-without-pages.css lib/styles/styleguide-theme.scss:public/assets/styleguide-theme.css --load-path=node_modules --style=expanded --no-source-map && postcss public/assets/bundle.css public/assets/bundle-without-pages.css public/assets/styleguide-theme.css --replace",
"compile:js": "esbuild lib/scripts/index.js --bundle --outfile=public/assets/bundle.js",
"compile:static": "node scripts/copy-assets.mjs",
"compile-watch": "npm-run-all compile:static --parallel watch:css watch:js",
"watch:css": "sass --watch lib/styles/index-with-pages.scss:public/assets/bundle.css lib/styles/index.scss:public/assets/bundle-without-pages.css lib/styles/styleguide-theme.scss:public/assets/styleguide-theme.css --load-path=node_modules --style=expanded --no-source-map",
"watch:js": "esbuild lib/scripts/index.js --bundle --outfile=public/assets/bundle.js --watch",
"test": "eslint --cache . && stylelint --cache 'lib/**/*.scss' 'components/**/*.scss' && prettier --check .",
"lint:fix": "eslint --cache --fix . && stylelint --cache --fix 'lib/**/*.scss' 'components/**/*.scss' && prettier --write .",
"site": "npm run compile && fractal-fork build",
"dist": "./scripts/dist",
"release": "release-it"
},
"engines": {
"node": ">=24.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"autoprefixer": "^10.4.27",
"esbuild": "^0.25.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"fractal-fork": "^0.1.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"modularscale-sass": "^3.0.10",
"nodemon": "^3.1.14",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"postcss-scss": "^4.0.3",
"prettier": "^3.8.1",
"release-it": "^20.0.1",
"sass": "^1.97.3",
"stylelint": "^15.0.0",
"stylelint-config-clean-order": "^6.0.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^34.0.0"
}
}