forked from projectcaluma/ember-caluma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.64 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
{
"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.2.0",
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@semantic-release/exec": "^6.0.1",
"babel-eslint": "10.1.0",
"ember-template-lint": "3.10.0",
"ember-template-lint-plugin-prettier": "2.0.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-ember": "10.5.7",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-qunit": "7.0.0",
"husky": "7.0.2",
"lint-staged": "11.2.3",
"node-fetch": "3.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"semantic-release-monorepo": "7.0.5"
},
"engines": {
"node": "10.* || >= 12"
},
"release": {
"extends": [
"@adfinis-sygroup/semantic-release-config",
"semantic-release-monorepo"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/exec",
{
"prepareCmd": "../../bin/update-peers.sh"
}
],
"@semantic-release/github",
"@semantic-release/git"
]
}
}