|
14 | 14 | }, |
15 | 15 | "scripts": { |
16 | 16 | "build": "ember build --environment=production", |
17 | | - "lint": "npm-run-all --print-name --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"", |
18 | | - "lint:fix": "npm-run-all --print-name --aggregate-output --continue-on-error --parallel \"lint:*:fix\"", |
| 17 | + "lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"", |
| 18 | + "lint:css": "stylelint \"**/*.css\"", |
| 19 | + "lint:css:fix": "concurrently \"npm:lint:css -- --fix\"", |
| 20 | + "lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"", |
19 | 21 | "lint:hbs": "ember-template-lint .", |
20 | 22 | "lint:hbs:fix": "ember-template-lint . --fix", |
21 | 23 | "lint:js": "eslint . --cache", |
22 | 24 | "lint:js:fix": "eslint . --fix", |
23 | 25 | "start": "ember serve", |
24 | | - "test": "npm-run-all --print-name \"lint\" \"test:*\"", |
| 26 | + "test": "concurrently \"npm:lint\" \"npm:test:*\" --names \"lint,test:\"", |
25 | 27 | "test:mocha": "mocha", |
26 | 28 | "test:ember": "ember test", |
27 | 29 | "test:ember-compatibility": "ember try:each" |
|
47 | 49 | "silent-error": "^1.1.1" |
48 | 50 | }, |
49 | 51 | "devDependencies": { |
| 52 | + "@babel/eslint-parser": "^7.21.3", |
| 53 | + "@babel/plugin-proposal-decorators": "^7.21.0", |
50 | 54 | "@ember/optional-features": "^2.0.0", |
51 | 55 | "@ember/string": "^3.1.1", |
52 | | - "@ember/test-helpers": "^2.8.1", |
| 56 | + "@ember/test-helpers": "^2.9.3", |
53 | 57 | "@embroider/test-setup": "^3.0.3", |
54 | 58 | "@glimmer/component": "^1.1.2", |
55 | 59 | "@glimmer/tracking": "^1.1.2", |
56 | | - "babel-eslint": "^10.1.0", |
57 | 60 | "broccoli-asset-rev": "^3.0.0", |
58 | 61 | "broccoli-test-helper": "^1.5.0", |
59 | | - "ember-auto-import": "^2.4.3", |
60 | | - "ember-cli": "~4.8.1", |
| 62 | + "concurrently": "^8.0.1", |
| 63 | + "ember-auto-import": "^2.6.3", |
| 64 | + "ember-cli": "~4.12.3", |
61 | 65 | "ember-cli-dependency-checker": "^3.3.1", |
62 | | - "ember-cli-htmlbars": "^6.1.1", |
| 66 | + "ember-cli-htmlbars": "^6.2.0", |
63 | 67 | "ember-cli-inject-live-reload": "^2.1.0", |
64 | 68 | "ember-cli-sri": "^2.1.1", |
65 | 69 | "ember-cli-terser": "^4.0.2", |
66 | | - "ember-disable-prototype-extensions": "^1.1.3", |
67 | 70 | "ember-load-initializers": "^2.1.2", |
68 | 71 | "ember-page-title": "^7.0.0", |
69 | | - "ember-qunit": "^6.0.0", |
70 | | - "ember-resolver": "^8.0.3", |
71 | | - "ember-source": "~4.8.0", |
| 72 | + "ember-qunit": "^6.2.0", |
| 73 | + "ember-resolver": "^10.0.0", |
| 74 | + "ember-source": "~4.12.0", |
72 | 75 | "ember-source-channel-url": "^3.0.0", |
73 | | - "ember-template-lint": "^4.16.1", |
| 76 | + "ember-template-lint": "^5.7.2", |
74 | 77 | "ember-try": "^3.0.0", |
75 | | - "eslint": "^7.32.0", |
76 | | - "eslint-config-prettier": "^8.5.0", |
77 | | - "eslint-plugin-ember": "^11.1.0", |
78 | | - "eslint-plugin-node": "^11.1.0", |
| 78 | + "eslint": "^8.37.0", |
| 79 | + "eslint-config-prettier": "^8.8.0", |
| 80 | + "eslint-plugin-ember": "^11.5.0", |
| 81 | + "eslint-plugin-n": "^15.7.0", |
79 | 82 | "eslint-plugin-prettier": "^4.2.1", |
80 | | - "eslint-plugin-qunit": "^7.3.1", |
| 83 | + "eslint-plugin-qunit": "^7.3.4", |
81 | 84 | "glob": "^7.1.3", |
82 | 85 | "lint-to-the-future": "^2.0.0", |
83 | 86 | "lint-to-the-future-eslint": "^2.0.1", |
84 | 87 | "loader.js": "^4.7.0", |
85 | 88 | "mocha": "^9.1.2", |
86 | | - "npm-run-all": "^4.1.5", |
87 | | - "prettier": "^2.7.1", |
88 | | - "qunit": "^2.19.2", |
| 89 | + "prettier": "^2.8.7", |
| 90 | + "qunit": "^2.19.4", |
89 | 91 | "qunit-dom": "^2.0.0", |
90 | 92 | "sinon": "^17.0.1", |
| 93 | + "stylelint": "^15.4.0", |
| 94 | + "stylelint-config-standard": "^32.0.0", |
| 95 | + "stylelint-prettier": "^3.0.0", |
91 | 96 | "webpack": "^5.90.1" |
92 | 97 | }, |
| 98 | + "peerDependencies": { |
| 99 | + "ember-source": "^4.0.0" |
| 100 | + }, |
93 | 101 | "engines": { |
94 | 102 | "node": "14.* || 16.* || >= 18" |
95 | 103 | }, |
|
0 commit comments