forked from twyr/embroider-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.96 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
{
"name": "@houseninja/embroider-template",
"private": true,
"displayName": "Embroider Template",
"description": "Monorepo for an example Ember v4.0+ addon implementation using the Embroider Build System",
"homepage": "https://github.com/houseninjadojo/embroider-template#readme",
"license": "MITNFA",
"readme": "README.md",
"version": "1.0.2",
"author": {
"name": "Vish Desai",
"email": "[email protected]",
"url": "https://github.com/shadyvd"
},
"contributors": [
{
"name": "Vish Desai",
"email": "[email protected]",
"url": "https://github.com/shadyvd"
},
{
"name": "Miles Zimmerman",
"email": "[email protected]",
"url": "https://github.com/mileszim"
}
],
"maintainers": [
{
"name": "Vish Desai",
"email": "[email protected]",
"url": "https://github.com/shadyvd"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/houseninjadojo/embroider-template.git"
},
"bugs": {
"url": "https://github.com/houseninjadojo/embroider-template/issues"
},
"dependencies": {
"@embroider/addon-shim": "1.8.3",
"@glimmer/component": "1.1.2",
"@glimmer/tracking": "1.1.2"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"commitizen": "4.2.5",
"cz-customizable": "7.0.0",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-editorconfig": "4.0.2",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-security": "1.5.0",
"eslint-plugin-security-node": "1.1.1",
"git-split-diffs": "0.10.0",
"husky": "8.0.1",
"is-ci": "3.0.1",
"lint-staged": "13.0.3",
"npm-check-updates": "16.3.15"
},
"scripts": {
"check-updates": "npx npm-check-updates -i -u && npm run check-updates --workspaces",
"lint-staged": "npx lint-staged --allow-empty",
"prepare": "is-ci || npx husky install"
},
"engines": {
"node": ">= 14"
},
"workspaces": [
"addons/*",
"apps/*"
]
}