-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
69 lines (69 loc) · 1.99 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
{
"name": "flexi-root",
"private": true,
"version": "3.0.0-alpha.1",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/html-next/flexi.git"
},
"license": "MIT",
"author": "Chris Thoburn (@runspired) <[email protected]>",
"contributors": [
{
"name": "Robert Wagner",
"email": "[email protected]",
"url": "https://github.com/rwwagner90"
},
{
"name": "Kyle Bishop",
"email": "[email protected]",
"url": "https://github.com/kybishop"
}
],
"scripts": {
"lint": "pnpm run lint:prettier && pnpm run lint:js",
"lint:js": "eslint --cache --ext=js,ts .",
"lint:prettier": "prettier --check --cache --cache-location=.prettier-cache --log-level=warn .",
"lint:prettier:fix": "prettier --write --cache --cache-location=.prettier-cache --log-level=warn .",
"test:development": "pnpm turbo test:development"
},
"packageManager": "[email protected]",
"volta": {
"node": "23.1.0",
"pnpm": "9.12.3"
},
"engines": {
"node": "18.* || 20.* || >= 22",
"npm": "use pnpm",
"yarn": "use pnpm"
},
"overrides": {
"ember-cli-babel": "8.2.0",
"ember-cli-htmlbars": "6.3.0",
"ember-auto-import": "2.9.0",
"broccoli-funnel": "3.0.8",
"broccoli-merge-trees": "4.2.0",
"@embroider/macros": "1.16.9"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-decorators": "^7.25.9",
"eslint": "^8.57.1",
"prettier-plugin-ember-template-tag": "2.0.2",
"ember-template-tag": "2.3.16",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ember": "^12.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-useless-assign": "^1.0.3",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-qunit": "^8.1.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "56.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"turbo": "^2.2.3",
"prettier": "^3.3.3"
}
}