-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.67 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.67 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
{
"private": true,
"dependencies": {
"@sentry/browser": "^9.42.0",
"autoprefixer": "^10.4.21",
"esbuild": "^0.25.8",
"postcss-cli": "^11.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"promise-polyfill": "^8.3.0",
"rollup": "^4.59.0",
"sass": "^1.89.2",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@stylistic/eslint-plugin-js": "^4.4.1",
"@stylistic/stylelint-config": "^3.0.1",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"postcss": "^8.5.6",
"remark-cli": "^12.0.1",
"remark-gfm": "^4.0.1",
"remark-lint-list-item-indent": "^4.0.1",
"remark-preset-lint-recommended": "^7.0.1",
"stylelint": "^16.22.0",
"stylelint-config-standard": "^38.0.0",
"stylelint-config-standard-scss": "^15.0.1",
"stylelint-no-unsupported-browser-features": "^8.0.4"
},
"peerDependencies": {
"postcss": "*"
},
"scripts": {
"build:styles": "sass assets/styles/main.scss public/styles/main.css -s compressed && postcss public/styles/main.css -o public/styles/main.css",
"build:scripts": "esbuild assets/scripts/main.js assets/scripts/sentry.js --outdir=public/scripts/compiled/ --bundle --sourcemap",
"build": "pnpm run build:styles && pnpm run build:scripts",
"clean:styles": "rm -f public/styles/main.css public/styles/main.css.map",
"clean:scripts": "rm -rvf public/scripts/compiled",
"clean": "pnpm run clean:styles && pnpm run clean:scripts",
"lint:docs": "remark .",
"lint:styles": "stylelint assets/styles/",
"lint:scripts": "eslint",
"lint": "pnpm run lint:docs; docs_lint_result=$?; pnpm run lint:styles; styles_lint_result=$?; pnpm run lint:scripts && [ $styles_lint_result -eq 0 ] && [ $docs_lint_result -eq 0 ]"
}
}