-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.37 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
{
"private": true,
"repository": "https://github.com/zonkyio/ember-liveagent.git",
"license": "MIT",
"author": "@zonkyio",
"scripts": {
"build": "pnpm --filter ember-liveagent build",
"lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:' && pnpm --filter '*' lint",
"lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:' && pnpm --filter '*' lint:fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"format": "prettier . --check && pnpm --filter '*' format",
"format:fix": "prettier . --write && pnpm --filter '*' format:fix",
"prepare": "pnpm build && husky",
"start": "concurrently 'pnpm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "pnpm --filter ember-liveagent start --no-watch.clearScreen",
"start:test-app": "pnpm --filter test-app start",
"test": "pnpm --filter '*' test",
"test:ember": "pnpm --filter '*' test:ember"
},
"devDependencies": {
"@glint/core": "^1.2.1",
"concurrently": "^8.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.10.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"prettier": "^3.0.3",
"prettier-plugin-ember-template-tag": "^2.0.2",
"release-plan": "^0.9.0"
},
"packageManager": "[email protected]",
"volta": {
"node": "18.20.0",
"pnpm": "9.6.0"
}
}