-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
102 lines (102 loc) · 3.46 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
{
"name": "hyperchannel",
"version": "0.14.1",
"description": "Kosmos Web Client",
"repository": "https://github.com/67P/hyperchannel",
"license": "MPL",
"author": "Kosmos Community",
"directories": {
"doc": "doc",
"test": "tests"
},
"private": true,
"scripts": {
"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:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"start": "NODE_ENV=development ember serve",
"test": "npm-run-all lint test:*",
"test:ember": "ember test",
"build": "NODE_ENV=production ember build --environment=production",
"build-prod": "NODE_ENV=production rm -rf release/* && ember build -prod --output-path release",
"preversion": "npm test",
"version": "npm run build-prod && git add release/",
"deploy": "git push 5apps master"
},
"engines": {
"node": "10.* || >= 12"
},
"ember": {
"edition": "octane"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-decorators": "^7.17.2",
"@csstools/postcss-sass": "^5.0.0",
"@ember/optional-features": "^2.0.0",
"@ember/render-modifiers": "^2.0.4",
"@ember/test-helpers": "^2.2.8",
"@glimmer/component": "^1.0.3",
"@glimmer/tracking": "^1.0.4",
"@kosmos/remotestorage-module-kosmos": "^2.2.0",
"@tailwindcss/forms": "^0.4.0",
"autoprefixer": "^10.4.2",
"broccoli-asset-rev": "^3.0.0",
"consistent-color-generation": "0.4.0",
"ember-auto-import": "^2.2.4",
"ember-autofocus-modifier": "^3.0.0",
"ember-body-class": "^2.0.0",
"ember-cached-decorator-polyfill": "^0.1.4",
"ember-cli": "~3.24.0",
"ember-cli-app-version": "^5.0.0",
"ember-cli-babel": "^7.26.6",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-htmlbars": "^5.3.1",
"ember-cli-inject-live-reload": "^2.1.0",
"ember-cli-inline-content": "^0.4.1",
"ember-cli-postcss": "^8.0.0",
"ember-cli-sri": "^2.1.1",
"ember-cli-terser": "^4.0.1",
"ember-concurrency": "^2.2.1",
"ember-export-application-global": "^2.0.1",
"ember-fetch": "^8.1.0",
"ember-gestures": "github:lupestro/ember-gestures#ee4bf441c304b7f183b04a28d127dba8c3221f34",
"ember-hammertime": "1.6.0",
"ember-keyboard-shortcuts": "github:67P/ember-keyboard-shortcuts#feature/octane_classes",
"ember-load-initializers": "^2.1.2",
"ember-maybe-import-regenerator": "^1.0.0",
"ember-moment": "^10.0.0",
"ember-page-title": "^7.0.0",
"ember-promise-modals": "^2.0.0",
"ember-qunit": "^5.1.4",
"ember-resolver": "^8.0.2",
"ember-sinon": "^5.0.0",
"ember-sinon-qunit": "^6.0.0",
"ember-source": "~3.24.6",
"ember-template-lint": "^3.16.0",
"ember-truth-helpers": "^3.0.0",
"eslint": "^8.9.0",
"eslint-plugin-ember": "^10.5.9",
"eslint-plugin-node": "^11.1.0",
"inobounce": "^0.2.0",
"linkify-string": "^3.0.4",
"linkifyjs": "^3.0.5",
"loader.js": "^4.7.0",
"localforage": "^1.9.0",
"moment": "^2.29.1",
"npm-run-all": "^4.1.5",
"postcss": "8.4.6",
"postcss-scss": "4.0.3",
"qunit": "^2.18.0",
"qunit-dom": "^2.0.0",
"remotestoragejs": "^2.0.0-beta.3",
"tailwindcss": "^3.0.23",
"webpack": "^5.69.1"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}