facilmap/package.json

38 wiersze
1.2 KiB
JSON

{
2021-02-28 22:17:26 +00:00
"name": "facilmap-root",
"private": true,
2023-12-30 01:04:03 +00:00
"type": "module",
2021-02-28 22:17:26 +00:00
"workspaces": [
2021-04-15 21:26:10 +00:00
"types",
2021-02-28 22:17:26 +00:00
"client",
2021-04-15 21:26:10 +00:00
"utils",
2021-02-28 22:17:26 +00:00
"leaflet",
2021-04-15 21:26:10 +00:00
"frontend",
2024-01-16 17:59:19 +00:00
"server",
"integration-tests"
2021-02-28 22:17:26 +00:00
],
"scripts": {
2023-12-30 01:04:03 +00:00
"lint": "eslint --ext .js,.mjs,.cjs,.ts,.mts,.cts,.vue ./",
2023-09-12 11:31:55 +00:00
"clean": "yarn workspaces foreach -v run clean",
2023-11-14 18:03:58 +00:00
"build": "yarn workspaces foreach -vt run build",
"build:frontend:app": "yarn workspace facilmap-frontend run build:app",
"build:server": "yarn workspace facilmap-server run build",
"prod-server": "yarn workspace facilmap-server run prod-server",
"server": "yarn workspace facilmap-server run server",
"dev-server": "yarn workspace facilmap-server run dev-server",
2023-12-30 01:28:45 +00:00
"check-types": "yarn workspaces foreach -vt run check-types",
"test": "yarn workspaces foreach -v run test"
},
"devDependencies": {
2024-04-09 19:12:34 +00:00
"@types/eslint": "^8.56.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
2024-03-07 02:30:24 +00:00
"eslint": "^8.57.0",
2023-10-02 03:23:22 +00:00
"eslint-import-resolver-typescript": "^3.6.1",
2023-12-26 11:24:03 +00:00
"eslint-plugin-import": "^2.29.1",
2024-04-09 19:12:34 +00:00
"eslint-plugin-vue": "^9.24.1"
2021-04-15 21:26:10 +00:00
},
2023-04-04 18:56:31 +00:00
"version": "0.0.0",
2023-12-29 22:39:45 +00:00
"packageManager": "yarn@3.6.3"
}