This repository has been archived by the owner on Jan 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
138 lines (138 loc) · 3.58 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "jellyfish",
"version": "76.0.0",
"homepage": "https://github.com/product-os/jellyfish",
"description": "The Jellyfish Project",
"codename": "seamstress",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:product-os/jellyfish.git"
},
"engines": {
"node": ">=16"
},
"scripts": {
"lint": "balena-lint -e js *.js scripts test && shellcheck scripts/*.sh && prettier --check **/*.json **/*.yml",
"lint:fix": "balena-lint -e js --fix *.js scripts test && prettier -w **/*.json **/*.yml",
"lint:catch": "catch-uncommitted --skip-node-versionbot-changes --exclude=VERSION,.versionbot/",
"lint:server": "(cd apps/server && npm run lint)",
"lint:ui": "(cd apps/ui && npm run lint)",
"test": "npm run lint",
"test:e2e:sdk": "ava ./test/e2e/sdk/*.spec.js",
"test:e2e:ui": "playwright test test/e2e/ui",
"test:e2e:server": "ava ./test/e2e/server/**/*.spec.js",
"test:integration:server": "(cd apps/server && npm run test:integration)",
"postinstall": "cd apps/server && npm ci",
"install:all": "npm ci && (cd apps/ui && npm ci)",
"compose:local": "docker-compose -f docker-compose.local.yml up",
"push": "./scripts/push.sh",
"build:server": "(cd apps/server && npm run build)",
"build:ui": "(cd apps/ui && npm run build)",
"dev:server": "(cd apps/server && npm run dev)",
"dev:ui": "(cd apps/ui && npm run dev)"
},
"ava": {
"timeout": "10m",
"verbose": true,
"failWithoutAssertions": true,
"failFast": true,
"files": [
"test/**/*.spec.js"
]
},
"lint-staged": {
"*.js": [
"balena-lint -e js --fix"
],
"*.{ts,tsx}": [
"balena-lint --fix"
],
"*.sh": [
"shellcheck"
],
"*.{json,yml}": [
"prettier -w"
]
},
"author": "Balena.io. <[email protected]>",
"license": "AGPL-3.0",
"devDependencies": {
"@balena/jellyfish-client-sdk": "^13.11.3",
"@balena/jellyfish-environment": "^21.0.0",
"@balena/lint": "^6.2.2",
"@playwright/test": "^1.22.2",
"ava": "^4.3.1",
"aws-sdk": "^2.1368.0",
"catch-uncommitted": "^2.0.0",
"cli-spinner": "^0.2.10",
"jsonwebtoken": "^9.0.0",
"lint-staged": "^13.0.0",
"lodash": "^4.17.21",
"node-jose": "^2.2.0",
"playwright": "^1.22.2",
"prettier": "^2.7.1",
"request": "^2.88.2",
"shellcheck": "^1.1.0",
"simple-git-hooks": "^2.8.0",
"uuid": "^9.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"versionist": {
"publishedAt": "2023-12-18T03:56:39.605Z"
},
"balena": {
"environment": [
{
"name": "LOGLEVEL",
"value": "info"
},
{
"name": "NODE_ENV",
"value": "development"
},
{
"name": "NODE_ENV",
"serviceName": "jellyfish-tests",
"value": "test"
}
],
"secrets": [
{
"serviceName": "jellyfish-tests",
"value": "aws_access_key_id"
},
{
"serviceName": "jellyfish-tests",
"value": "aws_s3_bucket_name"
},
{
"serviceName": "jellyfish-tests",
"value": "aws_secret_access_key"
},
{
"value": "integration_discourse_token"
},
{
"value": "integration_discourse_username"
},
{
"value": "integration_front_token"
},
{
"value": "integration_github_app_id"
},
{
"value": "integration_github_private_key"
},
{
"value": "integration_github_token"
},
{
"value": "integration_intercom_token"
}
]
}
}