-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.22 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 4.22 KB
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
{
"name": "<%= name %>",
"version": "0.0.0",
"private": true,
"description": "Small description for <%= name %> goes here",
"repository": "",
"type": "module",
"license": "MIT",
"author": "",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "vite build",
"format": "prettier . --cache --write",
"lint": "concurrently \"<%= packageManager %>:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
"lint:css": "stylelint \"**/*.css\"",
"lint:css:fix": "concurrently \"<%= packageManager %>:lint:css -- --fix\"",
"lint:fix": "concurrently \"<%= packageManager %>:lint:*:fix\" --names \"fix:\" --prefixColors auto && <%= invokeScriptPrefix %> format",
"lint:format": "prettier . --cache --check",
"lint:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix<% if (typescript) { %>",
"lint:types": "glint<% } %>",
"start": "vite",
"test": "concurrently \"<%= packageManager %>:lint\" \"<%= packageManager %>:test:*\" --names \"lint,test:\" --prefixColors auto",
"test:ember": "vite build --mode test && testem ci"
},
"exports": {
"./tests/*": "./tests/*",
"./*": "./app/*"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/runtime": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.26.10<% if (typescript) { %>",
"@babel/plugin-transform-typescript":"^7.27.0<% } %>",
"@babel/eslint-parser": "^7.26.10<% if (typescript && emberData) { %>",
"@ember-data/adapter": "~5.3.12",
"@ember-data/graph": "~5.5.0",
"@ember-data/json-api": "~5.5.0",
"@ember-data/legacy-compat": "~5.5.0",
"@ember-data/model": "~5.5.0",
"@ember-data/request": "~5.5.0",
"@ember-data/request-utils": "~5.5.0",
"@ember-data/serializer": "~5.5.0",
"@ember-data/store": "~5.5.0",
"@ember-data/tracking": "~5.5.0<% } %><% if (typescript) { %>",
"@ember/app-tsconfig": "^1.0.3<% } %>",
"@ember/optional-features": "^2.2.0",
"@ember/string": "^4.0.0",
"@ember/test-helpers": "^5.1.0",
"@ember/test-waiters": "^4.1.0",
"@embroider/macros": "^1.16.12",
"@embroider/core": "^4.0.0-alpha.0",
"@embroider/vite": "^1.0.0-alpha.0",
"@embroider/compat": "^4.0.0-alpha.0",
"@embroider/router": "^3.0.1",
"@embroider/config-meta-loader": "^1.0.0-alpha.0",
"@eslint/js": "^9.23.0",
"@glimmer/component": "^2.0.0<% if (typescript) { %>",
"@glint/core": "^1.5.2",
"@glint/environment-ember-loose": "^1.5.2",
"@glint/environment-ember-template-imports": "^1.5.2",
"@glint/template": "^1.5.2<% } %>",
"@rollup/plugin-babel": "^6.0.4<% if (typescript) { %>",
"@types/qunit": "^2.19.12",
"@types/rsvp": "^4.0.9<% if (emberData) {%>",
"@warp-drive/core-types": "~5.5.0<% }} %><% if (emberData) { %>",
"@warp-drive/ember": "~5.5.0<% } %>",
"babel-plugin-ember-template-compilation": "^2.4.1",
"concurrently": "^9.1.2",
"decorator-transforms": "^2.3.0",
"ember-auto-import": "^2.10.0",
"ember-cli": "~6.3.0",
"ember-cli-babel": "^8.2.0",
"ember-cli-deprecation-workflow": "^3.3.0",
"ember-cli-htmlbars": "^6.3.0<% if (emberData) { %>",
"ember-data": "~5.5.0<% } %>",
"ember-load-initializers": "^3.0.1",
"ember-modifier": "^4.2.0",
"ember-page-title": "^9.0.1",
"ember-qunit": "^9.0.1",
"ember-resolver": "^13.1.0",
"ember-source": "~6.3.0",
"ember-template-imports": "^4.3.0",
"ember-template-lint": "^6.1.0<% if (welcome) { %>",
"ember-welcome-page": "^7.0.2<% } %>",
"eslint": "^9.23.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ember": "^12.5.0",
"eslint-plugin-n": "^17.16.2",
"eslint-plugin-qunit": "^8.1.2",
"globals": "^15.15.0",
"prettier": "^3.5.3",
"prettier-plugin-ember-template-tag": "^2.0.4",
"qunit": "^2.24.1",
"qunit-dom": "^3.4.0",
"stylelint": "^16.16.0",
"stylelint-config-standard": "^36.0.1",
"testem": "^3.16.0",
"tracked-built-ins": "^3.4.0<% if (typescript) { %>",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0<% } %>",
"vite": "^6.0.0"
},
"engines": {
"node": ">= 18"
},
"ember": {
"edition": "octane"
}
}