-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.35 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.35 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
{
"name": "exosphere",
"version": "2021.01.06",
"productName": "Exosphere",
"description": "A client for making things happen in the cloud. Currently targeting OpenStack.",
"main": "elm-web.js",
"scripts": {
"build:prod": "elm-watch make --optimize",
"postinstall": "npm run elm:sideload && npm run elm:git",
"start": "npm run live",
"elm": "npx elm-watch make",
"live": "cross-env ELM_WATCH_HOST=app.exosphere.localhost elm-watch hot",
"test": "npx elm-test-rs && npx elm-test-rs --project review",
"js:format": "npx prettier --check .",
"js:typecheck": "npx tsc",
"perf:auth": "npx playwright test ./performance-tests/auth.spec.mjs --config=./performance-tests/playwright.config.mjs",
"perf:check": "npx playwright test ./performance-tests/check.spec.mjs --config=./performance-tests/playwright.config.mjs",
"perf:test": "npx playwright test ./performance-tests/performance.spec.mjs --config=./performance-tests/playwright.config.mjs",
"elm:format": "npx elm-format --validate src tests review/src review/tests",
"elm:analyse": "npx elm-analyse",
"elm:review": "npx elm-review",
"elm:git": "npx elm-git-install",
"elm:sideload": "elm-sideload install --always",
"prepare": "command -v pre-commit && pre-commit install || echo 'pre-commit is not installed, see contributing.md'"
},
"author": {
"email": "dont@spam.me"
},
"license": "BSD-3-Clause",
"build": {
"appId": "exosphere-project.exosphere",
"mac": {
"category": "cloud.client"
}
},
"devDependencies": {
"@lydell/elm": "^0.19.1-14",
"cross-env": "^10.1.0",
"elm-analyse": "^0.16.5",
"elm-format": "^0.8.6",
"elm-git-install": "^0.1.4",
"elm-json": "^0.2.13",
"elm-review": "^2.10.2",
"elm-sideload": "^1.0.0",
"elm-test-rs": "^3.0.1-0",
"elm-watch": "^2.0.0-beta.7",
"prettier": "^3.5.3",
"terser": "^5.43.1",
"typescript": "^5.3.3"
},
"optionalDependencies": {
"dotenv": "^17.0.0",
"lighthouse": "^12.6.0",
"playwright": "^1.52.0",
"rimraf": "^6.0.1"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/exosphere/exosphere.git"
},
"keywords": [
"elm",
"openstack",
"cloud"
],
"bugs": {
"url": "https://gitlab.com/exosphere/exosphere/issues"
},
"homepage": "https://gitlab.com/exosphere/exosphere#readme"
}