-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
24 lines (24 loc) · 964 Bytes
/
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
{
"dependencies": {
"compare_view": "^1.3.4"
},
"devDependencies": {
"ak-kaleidoscope": "^1.1.0",
"webxr-polyfill": "^2.0.3"
},
"overrides": {
"string-width": "^6.1.0"
},
"scripts": {
"check-generated-css": "stylelint --config ./themes/projektemacher-base/.stylelintrc-postbuild.yaml 'docs/css/*.css'",
"lint-scss": "stylelint 'assets/scss/*'",
"lint-js": "eslint 'assets/js/*'",
"lint-toml": "eslint --ext .toml i18n",
"lint": "yarn run lint-scss && yarn run lint-js && yarn run lint-toml",
"postbuild-lint": "yarn run check-generated-css",
"prepatch": "cp -rf $INIT_CWD/themes/projektemacher-base/patches $INIT_CWD",
"patch": "yarn run patch-package",
"postinstall": "yarn run prepatch && yarn run patch && yarn run postinstall-mirador",
"postinstall-mirador": "cd node_modules/mirador && yarn add -D @babel/plugin-proposal-private-property-in-object && yarn install && yarn run build"
}
}