-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"site"
],
"scripts": {
"build": "pnpm turbo build",
"build:site": "pnpm turbo build --filter site",
"build:packages": "pnpm turbo build --filter './packages/*'",
"lint:js": "eslint . --fix --ext .js,.ts,.hbs,.gts,.gjs",
"start": "concurrently 'npm:_start:*' --names '_start:'",
"_start:site": "pnpm --filter site start",
"_start:packages": "pnpm --stream -parallel --filter './packages/*' start --no-watch.clearScreen",
"publish-packages": "pnpm build --filter './packages/*' && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@embroider/addon-shim": "^1.8.9",
"@glint/core": "^1.3.0",
"@nullvoxpopuli/eslint-configs": "^3.2.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@underline/eslint-config": "^0.15.1",
"concurrently": "^8.2.2",
"eslint": "^8.31.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"prettier-plugin-ember-template-tag": "^2.0.0",
"turbo": "^2.1.0",
"typescript": "^5.3.3"
},
"volta": {
"node": "18.0.0"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"ember-source"
]
},
"overrides": {
"ember-source": "~4.2.0"
}
},
"packageManager": "[email protected]"
}