-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.56 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.56 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
{
"name": "vite-with-compat",
"version": "0.0.0",
"private": true,
"description": "Small description for vite-with-compat goes here",
"repository": "",
"license": "MIT",
"author": "",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
":exam": "ember exam --config-file ./testem.cjs --path dist --split 2 --parallel 1",
"start": "vite",
"start:vite-preview": "vite preview",
"start:ember-server": "ember test --config-file ./testem.cjs --path dist --serve --no-launch",
"start:exam": "pnpm :exam server",
"build": "vite build",
"build:tests": "vite build --mode development",
"format": "prettier . --cache --write",
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto && pnpm 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",
"sync": "echo 'pnpm will sync injected dependencies. See pnpm-workspace.yaml'",
"test:normal": "testem ci",
"test:ember": "pnpm build:tests && pnpm test:normal",
"test:exam": "pnpm :exam --random"
},
"exports": {
"./tests/*": "./tests/*",
"./*": "./app/*"
},
"dependencies": {
"ember-exam": "workspace:*"
},
"devDependencies": {
"@babel/core": "7.28.6",
"@babel/plugin-transform-runtime": "7.28.5",
"@babel/runtime": "7.28.6",
"@ember/optional-features": "2.3.0",
"@ember/string": "4.0.1",
"@ember/test-helpers": "5.4.1",
"@ember/test-waiters": "4.1.1",
"@embroider/compat": "4.1.15",
"@embroider/config-meta-loader": "1.0.0",
"@embroider/core": "4.4.5",
"@embroider/macros": "1.19.7",
"@embroider/vite": "1.5.2",
"@glimmer/component": "2.0.0",
"@rollup/plugin-babel": "6.1.0",
"babel-plugin-ember-template-compilation": "2.4.1",
"concurrently": "9.2.1",
"decorator-transforms": "2.3.1",
"ember-auto-import": "2.12.1",
"ember-cli": "6.9.1",
"ember-cli-babel": "8.2.0",
"ember-eslint": "0.6.1",
"ember-qunit": "9.0.4",
"ember-resolver": "13.1.1",
"ember-source": "6.10.1",
"ember-template-lint": "7.9.3",
"eslint": "9.39.3",
"prettier": "3.8.1",
"prettier-plugin-ember-template-tag": "2.1.3",
"qunit": "2.25.0",
"qunit-dom": "3.5.0",
"testem": "3.17.0",
"vite": "7.3.1"
},
"engines": {
"node": ">= 18"
},
"ember": {
"edition": "octane"
}
}