mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-05-13 13:58:57 +00:00
* fix(server_manager): replace turned down omahaproxy.appspot.com * Update engine. * Fix type. * Yes we get it. A string is not an int. * Put the comment back. It's quite useful.
49 lines
1.7 KiB
JSON
49 lines
1.7 KiB
JSON
{
|
|
"name": "outline-server",
|
|
"private": true,
|
|
"dependencies": {
|
|
"node-fetch": "^2.6.7"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/config-conventional": "^17.0.0",
|
|
"@types/jasmine": "^3.5.10",
|
|
"@types/node-fetch": "^2.6.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.14.0",
|
|
"@typescript-eslint/parser": "^5.14.0",
|
|
"@webpack-cli/serve": "^2.0.5",
|
|
"browserslist": "^4.20.3",
|
|
"eslint": "^8.10.0",
|
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
"eslint-plugin-compat": "^4.0.2",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"generate-license-file": "^1.2.0",
|
|
"husky": "^1.3.1",
|
|
"jasmine": "^3.5.0",
|
|
"prettier": "^2.4.1",
|
|
"pretty-quick": "^3.1.1",
|
|
"typescript": "^4"
|
|
},
|
|
"engines": {
|
|
"node": "18.x.x"
|
|
},
|
|
"scripts": {
|
|
"action": "bash ./scripts/run_action.sh",
|
|
"action:help": "npm run action",
|
|
"action:list": "npm run action",
|
|
"clean": "rm -rf src/*/node_modules/ build/ node_modules/ src/server_manager/install_scripts/do_install_script.ts src/server_manager/install_scripts/gcp_install_script.ts third_party/shellcheck/download/ third_party/*/bin third_party/jsign/*.jar",
|
|
"format": "pretty-quick --staged --pattern \"**/*.{cjs,html,js,json,md,ts}\"",
|
|
"format:all": "prettier --write \"**/*.{cjs,html,js,json,md,ts}\"",
|
|
"lint": "npm run lint:sh && npm run lint:ts",
|
|
"lint:sh": "bash ./scripts/shellcheck.sh",
|
|
"lint:ts": "eslint \"**/*.{js,ts}\"",
|
|
"test": "npm run lint && npm run action metrics_server/test && npm run action sentry_webhook/build && npm run action server_manager/test && npm run action shadowbox/test"
|
|
},
|
|
"workspaces": [
|
|
"src/*"
|
|
],
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run lint && npm run format"
|
|
}
|
|
}
|
|
}
|