-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
64 lines (64 loc) · 2.89 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
{
"name": "@serlo/monorepo",
"version": "0.0.1",
"private": true,
"bugs": {
"url": "https://github.com/serlo/frontend/issues"
},
"repository": "serlo/frontend",
"license": "Apache-2.0",
"author": "Serlo Education e.V.",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
":format:prettier": "yarn prettier . '!{apps,packages}/**/*' --write",
":prettier": "yarn prettier . '!{apps,packages}/**/*' --check",
"build": "yarn workspace @serlo/frontend build",
"build:next": "yarn workspace @serlo/frontend build:next",
"check:all": "yarn workspace @serlo/frontend check:all",
"check:tailwind": "yarn workspace @serlo/frontend check:tailwind",
"codegen": "yarn workspace @serlo/frontend codegen",
"codegen-production": "yarn workspace @serlo/frontend codegen-production",
"commit:codegen": "git add apps/web/graphql.schema.json apps/web/src/fetcher/graphql-types/operations.ts && git commit -m 'chore: update graphql schema'",
"dev": "yarn workspace @serlo/frontend dev",
"e2e": "cd e2e-tests && yarn e2e",
"e2e-firefox": "cd e2e-tests && yarn e2e-firefox",
"e2e-firefox-localhost": "cd e2e-tests && yarn e2e-firefox-localhost",
"e2e-localapi": "cd e2e-tests && yarn e2e-localapi",
"e2e-localhost": "cd e2e-tests && yarn e2e-localhost",
"e2e-workers": "cd e2e-tests && yarn e2e-workers",
"editor-web-component:build": "yarn workspace @serlo/editor-web-component build",
"editor-web-component:publish": "yarn workspace @serlo/editor-web-component run publish:package",
"editor-web-component:publish-local": "yarn workspace @serlo/editor-web-component yalc:publish",
"editor:build": "yarn workspace @serlo/editor build",
"editor:publish": "yarn workspace @serlo/editor run publish:package",
"editor:publish-local": "yarn workspace @serlo/editor yalc:publish",
"editor:test": "yarn workspace @serlo/editor test",
"format": "yarn workspace @serlo/frontend format",
"format:eslint": "yarn workspace @serlo/frontend format:eslint",
"format:prettier": "yarn workspaces foreach -Ap run format:prettier",
"lint": "yarn workspace @serlo/frontend lint",
"lint:eslint": "cross-env FORCE_COLOR=true yarn workspaces foreach -Aip run lint:eslint",
"lint:prettier": "cross-env FORCE_COLOR=true yarn workspaces foreach -Aip run lint:prettier",
"lint:tsc": "yarn workspace @serlo/frontend lint:tsc",
"start": "yarn workspace @serlo/frontend start",
"test": "yarn workspace @serlo/frontend test"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@serlo/eslint-config": "workspace:*",
"@serlo/typescript-config": "workspace:*",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.4.2",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}