-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 882 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 882 Bytes
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
{
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:tracked-tools/tracked-toolbox.git"
},
"scripts": {
"build": "pnpm --filter tracked-toolbox build",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"prepare": "pnpm build",
"start": "concurrently 'pnpm:start:*' --restart-after 5000 --prefixColors auto",
"start:addon": "pnpm --filter tracked-toolbox start --no-watch.clearScreen",
"start:test-app": "pnpm --filter test-app start",
"test": "pnpm --filter '*' test",
"test:ember": "pnpm --filter '*' test:ember"
},
"devDependencies": {
"concurrently": "^9.1.2",
"prettier": "^3.5.3",
"prettier-plugin-ember-template-tag": "^2.0.5",
"release-plan": "^0.17.0"
},
"packageManager": "pnpm@10.0.0",
"volta": {
"node": "20.19.1",
"pnpm": "10.10.0"
}
}