-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
52 lines (52 loc) · 1.61 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
{
"private": true,
"repository": "https://github.com/NullVoxPopuli/ember-resources",
"license": "MIT",
"author": "NullVoxPopuli",
"scripts": {
"release": "changeset publish",
"dev": "concurrently 'npm:dev:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"dev:ember": "pnpm run --filter ember-app start",
"dev:addon": "pnpm run --filter ember-resources start --no-watch.clearScreen",
"dev:docs": "pnpm run --filter docs docs:watch --preserveWatchOutput",
"ci:update": "npx ember-ci-update",
"build": "pnpm run --filter ember-resources build",
"build:docs": "pnpm run --filter docs docs:collect",
"lint": "pnpm run --filter '*' lint:js --fix"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.2",
"@nullvoxpopuli/eslint-configs": "^3.0.0",
"concurrently": "^7.2.1",
"eslint": "^7.32.0",
"loader.js": "^4.7.0",
"prettier": "^2.7.1",
"typescript": "^4.7.3"
},
"volta": {
"node": "18.13.0",
"yarn": "1.22.19",
"npm": "9.3.1"
},
"packageManager": "pnpm@7.25.1",
"pnpm": {
"overrides": {
"@types/eslint": "7.29.0",
"mustache": "^4.2.0"
},
"overrides-notes": {
"@embroider/addon-shim": "some addons from the test-app are not using ^1.0.0",
"@types/eslint": "webpack brings in @types/eslint@8, which breaks our type checking",
"mustache": "ember-cli -> testem -> consolidate -> mustache is ancient"
},
"peerDependencyRules": {
"ignoreMissing": [
"msw"
],
"allowedVersions": {
"typescript": "*"
}
}
}
}