This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.83 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "root",
"private": true,
"type": "module",
"scripts": {
"build:all": "turbo run build --force",
"clean:artifacts": "rimraf -rf */*/dist */*/build **/.turbo **/*.tsbuildinfo **/package-lock.json",
"clean:deps": "rimraf -rf node_modules **/node_modules",
"fix:deps": "syncpack fix-mismatches && treb fix --allProjects --packageJson",
"test": "turbo run test",
"watch": "turbo run watch --parallel"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "~5.52.0",
"@typescript-eslint/parser": "~5.52.0",
"@typescript-eslint/utils": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-svelte": "2.18.0",
"eslint-plugin-vue": "^9.9.0",
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
"rimraf": "^4.1.2",
"source-map-support": "^0.5.21",
"svelte": "3.55.1",
"tslib": "^2.5.0"
},
"devDependencies": {
"@bscotch/pathy": "^2.6.0",
"@bscotch/trebuchet": "^2.8.0",
"@bscotch/utility": "^6.8.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"dotenv-vault": "^1.18.0",
"mocha": "^10.2.0",
"syncpack": "^8.5.14",
"turbo": "^1.7.4",
"typescript": "4.9.5"
},
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"syncpack": {
"workspace": false,
"source": [
"package.json",
"*/*/package.json"
]
},
"trebuchet": {
"npmScope": "@bscotch",
"keep": {
"dependencies": [
"@types/chai",
"@types/mocha",
"@types/node",
"@typescript-eslint*",
"eslint*",
"nano-staged",
"prettier*",
"source-map-support",
"svelte"
]
},
"vscodeWorkspaceConfigPath": false
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
]
}