-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.21 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.21 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
{
"name": "@strava-heatmapper/monorepo",
"private": true,
"scripts": {
"install-all": "scripts/install",
"build-deploy": "scripts/build-deploy",
"buildbackend-deploy": "scripts/buildbackend-deploy",
"build-container": "scripts/build-container",
"deploy": "scripts/deploy",
"connect": "scripts/connect",
"container": "scripts/container",
"build": "scripts/build",
"buildbackend": "scripts/buildbackend",
"serve": "scripts/serve",
"lint": "yarn --cwd=shared lint && yarn --cwd=client lint && yarn --cwd=server lint",
"prettier": "yarn --cwd=shared prettier && yarn --cwd=client prettier && yarn --cwd=server prettier"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.15.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "^3.3.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.54.0"
},
"workspaces": [
"shared",
"client",
"server"
],
"dependencies": {}
}