-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
106 lines (106 loc) · 3.37 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
{
"name": "ember-repl-test-app",
"version": "0.0.1",
"private": true,
"description": "Small description for test-app goes here",
"repository": {
"type": "git",
"url": "https://github.com/NullVoxPopuli/limber.git",
"directory": "packages/ember-repl/test-app"
},
"license": "MIT",
"author": "NullVoxPopuli",
"scripts": {
"lint": "pnpm -w exec lint",
"lint:fix": "pnpm -w exec lint fix",
"start": "ember serve",
"test:scenarios": "ember try:each",
"lint:types": "glint",
"lint:js": "pnpm -w exec lint js",
"lint:js:fix": "pnpm -w exec lint js:fix",
"lint:hbs": "pnpm -w exec lint hbs",
"lint:hbs:fix": "pnpm -w exec lint hbs:fix",
"lint:prettier:fix": "pnpm -w exec lint prettier:fix",
"lint:prettier": "pnpm -w exec lint prettier"
},
"dependencies": {
"@shikijs/rehype": "^1.21.1",
"@types/unist": "^3.0.2",
"buffer": "^6.0.3",
"common-tags": "^1.8.2",
"ember-repl": "workspace:*",
"ember-resources": "^7.0.3",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/plugin-proposal-decorators": "^7.25.7",
"@ember/optional-features": "^2.2.0",
"@ember/string": "^4.0.0",
"@ember/test-helpers": "^4.0.4",
"@ember/test-waiters": "^4.0.0",
"@embroider/broccoli-side-watch": "0.0.2-unstable.ba9fd29",
"@embroider/compat": "3.6.5",
"@embroider/core": "3.4.19",
"@embroider/test-setup": "4.0.0",
"@embroider/webpack": "4.0.8",
"@glimmer/component": "^2.0.0",
"@glimmer/tracking": "^1.1.2",
"@glint/core": "1.4.1-unstable.ff9ea6c",
"@glint/environment-ember-loose": "1.4.1-unstable.ff9ea6c",
"@glint/environment-ember-template-imports": "1.4.1-unstable.ff9ea6c",
"@glint/template": "1.4.1-unstable.ff9ea6c",
"@nullvoxpopuli/eslint-configs": "^4.0.0",
"@nullvoxpopuli/limber-untyped": "workspace:^0.0.1",
"@tsconfig/ember": "^3.0.7",
"@types/common-tags": "^1.8.4",
"@types/qunit": "^2.19.10",
"@types/rsvp": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"concurrently": "^9.0.1",
"ember-auto-import": "^2.10.0",
"ember-cli": "~5.12.0",
"ember-cli-app-version": "^7.0.0",
"ember-cli-babel": "^8.2.0",
"ember-cli-dependency-checker": "^3.3.2",
"ember-cli-htmlbars": "^6.3.0",
"ember-cli-inject-live-reload": "^2.1.0",
"ember-cli-sri": "^2.1.1",
"ember-load-initializers": "^3.0.1",
"ember-page-title": "^8.2.1",
"ember-qunit": "^8.0.2",
"ember-resolver": "^13.0.2",
"ember-source": ">= 6.0.1",
"ember-source-channel-url": "^3.0.0",
"ember-template-imports": "^4.1.2",
"ember-template-lint": "^6.0.0",
"ember-try": "^3.0.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ember": "^12.2.1",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-qunit": "^8.1.2",
"loader.js": "^4.7.0",
"path-browserify": "^1.0.1",
"prettier": "^3.3.3",
"prettier-plugin-ember-template-tag": "2.0.2",
"qunit": "^2.20.0",
"qunit-dom": "3.2.1",
"typescript": "^5.4.5",
"unified": "^10.1.2",
"webpack": ">= 5.92.0"
},
"engines": {
"node": ">= v16",
"npm": "use pnpm",
"yarn": "use pnpm"
},
"volta": {
"extends": "../../../package.json"
},
"ember": {
"edition": "octane"
}
}