-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
35 lines (35 loc) · 890 Bytes
/
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"site"
],
"scripts": {
"prepare": "pnpm --filter ember-focus-trap prepare",
"start": "npm-run-all --parallel start:*",
"start:addon": "pnpm --filter ember-focus-trap start",
"start:test-app": "pnpm --filter test-app start",
"lint:js": "eslint . --ext .js,.ts",
"test": "pnpm --filter test-app run test"
},
"devDependencies": {
"@underline/eslint-config-ember-typescript": "^0.12.0",
"@underline/eslint-config-node": "^0.12.0",
"@underline/eslint-config-typescript": "^0.12.0",
"eslint": "^8.57.1",
"lerna": "^4.0.0",
"npm-run-all": "4.1.5",
"typescript": "^4.9.5"
},
"dependencies": {
"eslint-plugin-qunit": "^7.3.4"
},
"resolutions": {
"@embroider/macros": "^1.0.0"
},
"volta": {
"node": "22.11.0",
"pnpm": "9.13.0"
}
}