-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
122 lines (122 loc) · 3.83 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "root",
"version": "13.1.1",
"private": true,
"homepage": "https://docs.caluma.io/ember-caluma",
"repository": "github:projectcaluma/ember-caluma",
"scripts": {
"start": "pnpm --filter ember-caluma start",
"start-proxy": "pnpm --filter ember-caluma start-proxy",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:css": "stylelint \"**/*.scss\"",
"lint:css:fix": "concurrently \"npm:lint:css -- --fix\"",
"lint:prettier": "prettier -c \"**/*.{graphql,json,md,yaml}\"",
"lint:prettier:fix": "prettier -wl \"**/*.{graphql,json,md,yaml}\"",
"update-possible-types": "node bin/fetch-possible-types.mjs && prettier --write packages/core/addon/-private/possible-types.js",
"update-schema": "get-graphql-schema http://localhost:8000/graphql > packages/testing/addon/mirage-graphql/schema.graphql && prettier --write packages/testing/addon/mirage-graphql/schema.graphql",
"update-caluma": "concurrently \"npm:update-possible-types\" \"npm:update-schema\"",
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"bump-version": "node bin/bump-version.mjs"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.hbs": "ember-template-lint --fix",
"*.scss": "stylelint --fix",
"*.{graphql,json,md,yaml}": "prettier --write"
},
"devDependencies": {
"@adfinis/eslint-config": "2.1.1",
"@babel/core": "7.25.7",
"@babel/eslint-parser": "7.25.1",
"@babel/plugin-proposal-decorators": "7.24.7",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@graphql-eslint/eslint-plugin": "3.20.1",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.3.5",
"@semantic-release/release-notes-generator": "14.0.1",
"concurrently": "9.0.1",
"ember-template-lint": "6.0.0",
"ember-template-lint-plugin-prettier": "5.0.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-ember": "12.2.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-qunit": "8.1.2",
"get-graphql-schema": "2.1.2",
"glob": "11.0.0",
"graphql": "15.9.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"node-fetch": "3.3.2",
"prettier": "3.3.3",
"semantic-release": "24.1.1",
"stylelint": "16.9.0",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-prettier": "5.0.2",
"stylelint-scss": "6.7.0"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"typescript"
],
"allowedVersions": {
"graphql": "^15.9.0",
"ember-source": "^5.0.0",
"ember-resources>ember-concurrency": "^4.0.0"
}
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"release": {
"branches": [
{
"name": "main"
},
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"prepareCmd": "pnpm bump-version ${nextRelease.version}"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"packages/**/package.json"
]
}
],
"@semantic-release/github"
]
}
}