forked from projectcaluma/ember-caluma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.65 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"homepage": "https://docs.caluma.io/ember-caluma",
"repository": "github:projectcaluma/ember-caluma",
"scripts": {
"start": "yarn workspace ember-caluma start",
"start-proxy": "yarn workspace ember-caluma start-proxy",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
"lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
"lint:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"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": "npm-run-all --aggregate-output --continue-on-error --parallel update-possible-types update-schema",
"prepare": "husky install"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.hbs": "ember-template-lint --fix",
"*.{scss,graphql,json,md,yaml}": "prettier --write"
},
"devDependencies": {
"@adfinis-sygroup/eslint-config": "1.5.0",
"@adfinis-sygroup/semantic-release-config": "3.4.0",
"@graphql-eslint/eslint-plugin": "3.10.7",
"babel-eslint": "10.1.0",
"ember-template-lint": "4.12.0",
"ember-template-lint-plugin-prettier": "4.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-ember": "11.0.5",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-qunit": "7.3.1",
"execa": "6.1.0",
"get-graphql-schema": "2.1.2",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"minimist": "1.2.6",
"node-fetch": "3.2.10",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"semantic-release-monorepo": "7.0.5",
"semver": "7.3.7"
},
"//": [
"TODO: remove validated-changeset resolution when https://github.com/poteto/ember-changeset/issues/650 is addressed",
"TODO: remove tracked-toolbox resolution when https://github.com/ember-learn/ember-cli-addon-docs/issues/1309 is addressed"
],
"resolutions": {
"**/validated-changeset": "~1.3.2",
"**/tracked-toolbox": "^1.2.3"
},
"release": {
"extends": [
"@adfinis-sygroup/semantic-release-config",
"semantic-release-monorepo"
]
}
}