-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.64 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.64 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
{
"name": "gyrinx",
"version": "0.0.1",
"description": "Core content library & application for Gyrinx",
"private": true,
"repository": "gyrinx-app/gyrinx",
"scripts": {
"build": "npm run css",
"css-compile": "sass --style compressed --source-map --embed-sources --no-error-css --load-path=node_modules gyrinx/core/static/core/scss/:gyrinx/core/static/core/css/",
"css-lint": "stylelint gyrinx/core/static/core/scss/",
"css-prefix": "postcss --replace gyrinx/core/static/core/css/*.css --use autoprefixer --map",
"css": "npm-run-all css-compile css-prefix",
"server": "sirv --dev --no-clear --port 3000",
"start": "npm-run-all --parallel watch server",
"watch": "nodemon -e html,scss -x \"npm run css\"",
"test": "npm-run-all css-lint css",
"js-fmt": "prettier --write \"**/*.js\"",
"fmt": "prettier --write \"**/*.{js,mjs,css,scss,json,yaml,yml}\"",
"fmt-check": "prettier --check \"**/*.{js,mjs,css,scss,json,yaml,yml}\"",
"lint:markdown": "markdownlint-cli2 \"**/*.md\""
},
"license": "ISC",
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.8"
},
"overrides": {
"fast-uri": "^3.1.2"
},
"devDependencies": {
"@github/markdownlint-github": "^0.8.0",
"autoprefixer": "^10.5.0",
"markdown-it": "^14.1.1",
"markdownlint-cli2": "^0.22.1",
"markdownlint-cli2-formatter-pretty": "^0.0.10",
"nodemon": "^3.1.14",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.14",
"postcss-cli": "^11.0.1",
"prettier": "^3.8.3",
"sass": "^1.99.0",
"sirv-cli": "^3.0.1",
"stylelint": "^16.26.1",
"stylelint-config-twbs-bootstrap": "^16.1.0"
}
}