-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "examtraining",
"version": "1.0.0",
"private": true,
"repository": "hongaar:examtraining",
"license": "MIT",
"author": "Joram van den Boezem <[email protected]>",
"workspaces": [
"packages/*"
],
"proxy": "http://localhost:5000",
"scripts": {
"start": "run-p \"start:**\"",
"start:web": "yarn workspace @examtraining/web run start",
"start:functions": "yarn workspace @examtraining/functions run build:watch",
"start:core": "yarn workspace @examtraining/core run build:watch",
"start:emulator": "firebase emulators:start",
"build": "yarn workspaces foreach --all --topological --verbose run build",
"build:watch": "yarn workspaces foreach --all --parallel --interlaced run build:watch",
"pack-core": "./pack-core.sh",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check --ignore-unknown .",
"postinstall": "husky install"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@types/prettier": "^3.0.0",
"firebase-tools": "13.20.2",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"moker": "3.0.1",
"npm-run-all": "4.1.5",
"prettier": "3.3.3"
},
"packageManager": "[email protected]",
"moker": {
"plugins": [
"typescript",
"prettier",
"lint-staged",
"husky",
"github-actions",
"dependabot"
],
"scoped": true
}
}