-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 972 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
25
26
27
28
29
30
31
32
{
"name": "@guildtv/elections-workspace",
"private": true,
"version": "2.0.0",
"workspaces": [
"backend",
"webui"
],
"description": "A Web user interface for Guild elections Graphics",
"author": "Rob Sumner <[email protected]> (http://robertsumner.co.uk)",
"type": "module",
"scripts": {
"postinstall": "run -B -T husky",
"start": "yarn workspace @guildtv/elections-backend start",
"dev": "yarn workspace @guildtv/elections-backend dev",
"_lint": "NODE_ENV=test ./node_modules/.bin/eslint --ext .js .",
"migrate": "yarn workspace @guildtv/elections-backend migrate",
"dev:webui": "yarn workspace @guildtv/elections-webui dev",
"dist": "yarn workspaces foreach --all run dist"
},
"repository": {
"type": "git",
"url": "https://github.com/GuildTV/elections-webui.git"
},
"packageManager": "[email protected]",
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
}
}