-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.05 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.05 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
{
"name": "@innoq/innoq-styleguide",
"version": "17.2.5",
"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": "faucet",
"compile-watch": "npm run compile -- --watch",
"test": "eslint --cache --ext .js . && stylelint --cache 'lib/**/*.scss' 'components/**/*.scss' && prettier --check .",
"lint:fix": "eslint --cache --ext .js . --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": "^8.9.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"faucet-pipeline-js": "^3.0.0",
"faucet-pipeline-sass": "^1.9.2",
"faucet-pipeline-static": "^2.0.0",
"fractal-fork": "^0.1.0",
"modularscale-sass": "^3.0.10",
"nodemon": "^3.1.10",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"postcss-scss": "^4.0.3",
"prettier": "^3.6.2",
"release-it": "^19.0.4",
"stylelint": "^15.0.0",
"stylelint-config-clean-order": "^6.0.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^34.0.0"
}
}