-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.51 KB
/
package.json
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
{
"name": "innoq-styleguide",
"version": "15.5.2",
"description": "INNOQ’s style guide and component library",
"license": "SEE LICENSE IN <LICENSE.md>",
"repository": {
"type": "git",
"url": "https://github.com/innoq/innoq-styleguide.git"
},
"scripts": {
"start": "npm-run-all --parallel server-watch compile-watch",
"server": "fractal-fork start --port 3001",
"server-watch": "nodemon -I -w components -w docs -e 'html' -x 'npm run server'",
"compile": "faucet",
"compile-watch": "npm run compile -- --watch",
"test": "eslint --cache --ext .js . && stylelint --cache 'lib/**/*.scss' 'components/**/*.scss' && prettier --check .",
"site": "npm run compile && fractal-fork build",
"dist": "./scripts/dist",
"release": "release-it"
},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"faucet-pipeline-js": "^3.0.0",
"faucet-pipeline-sass": "^1.4.0",
"faucet-pipeline-static": "^2.0.0",
"fractal-fork": "^0.1.0",
"modularscale-sass": "^3.0.10",
"nodemon": "^3.0.0",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-scss": "^4.0.3",
"prettier": "3.2.5",
"release-it": "^17.0.0",
"stylelint": "^15.0.0",
"stylelint-config-clean-order": "^6.0.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^34.0.0"
}
}