-
Notifications
You must be signed in to change notification settings - Fork 595
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.32 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": "test-esa",
"version": "0.0.0",
"private": true,
"description": "Test app for ember-simple-auth addon",
"repository": "",
"license": "MIT",
"author": "",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "ember build",
"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:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"start": "ember serve",
"start:demo-api": "node server/demo-api.js",
"test": "ember test",
"test:all": "ember try:each",
"test:one": "ember try:one"
},
"devDependencies": {
"@babel/eslint-parser": "7.28.6",
"@ember/legacy-built-in-components": "0.5.0",
"@ember/optional-features": "2.2.0",
"@ember/string": "3.1.1",
"@ember/test-helpers": "5.4.3",
"@embroider/test-setup": "4.0.0",
"@glimmer/component": "2.0.0",
"@glimmer/tracking": "1.1.2",
"body-parser": "2.2.2",
"bootstrap": "5.3.8",
"broccoli-asset-rev": "3.0.0",
"cors": "2.8.6",
"ember-auto-import": "2.11.2",
"ember-cli": "6.8.1",
"ember-cli-babel": "8.3.1",
"ember-cli-content-security-policy": "1.1.1",
"ember-cli-dependency-checker": "3.3.3",
"ember-cli-htmlbars": "7.0.1",
"ember-cli-inject-live-reload": "2.1.0",
"ember-cli-sri": "2.1.1",
"ember-cli-terser": "4.0.2",
"ember-disable-prototype-extensions": "1.1.3",
"ember-engines": "0.12.0",
"ember-load-initializers": "2.1.2",
"ember-maybe-import-regenerator": "1.0.0",
"ember-qunit": "9.1.0",
"ember-resolver": "11.0.1",
"ember-simple-auth": "workspace:*",
"ember-source": "6.8.1",
"ember-source-channel-url": "3.0.0",
"ember-try": "4.0.0",
"eslint": "9.39.4",
"express": "5.1.0",
"glob": "13.0.6",
"handlebars": "4.7.9",
"loader.js": "4.7.0",
"my-engine": "workspace:../test-app/lib/my-engine",
"najax": "1.0.7",
"npm-run-all2": "9.0.2",
"pretender": "3.4.7",
"qunit": "2.26.0",
"qunit-dom": "3.5.1",
"sinon": "21.0.3",
"torii": "1.0.0",
"webpack": "5.103.0"
},
"engines": {
"node": ">= 20"
},
"ember": {
"edition": "octane"
},
"dependencies": {
"ember-simple-auth": "workspace:*"
}
}