-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.27 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
{
"name": "facilmap-root",
"private": true,
"type": "module",
"workspaces": [
"types",
"client",
"utils",
"leaflet",
"frontend",
"server",
"integration-tests"
],
"scripts": {
"lint": "eslint ./",
"clean": "yarn workspaces foreach -v run clean",
"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",
"check-types": "yarn workspaces foreach -vt run check-types",
"test": "yarn workspaces foreach -v run test"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"eslint": "^9.21.0",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^16.0.0",
"typescript-eslint": "^8.24.1"
},
"//": "Use old api-extractor version because of https://github.com/microsoft/rushstack/issues/5126",
"resolutions": {
"@microsoft/api-extractor": "7.48.1"
},
"version": "0.0.0",
"packageManager": "yarn@3.6.3"
}