-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.42 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.42 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
{
"name": "@serlo/serlo.org-cloudflare-worker",
"version": "0.0.0",
"private": true,
"bugs": {
"url": "https://github.com/serlo/serlo.org-cloudflare-worker/issues"
},
"repository": "serlo/serlo.org-cloudflare-worker",
"license": "Apache-2.0",
"author": "Serlo Education e.V.",
"type": "module",
"scripts": {
"_eslint": "eslint \"{{__tests__,scripts,src}/**/*,*}.{js,jsx,ts,tsx}\"",
"_prettier": "prettier .",
"build": "wrangler deploy --dry-run --outdir=dist",
"check:all": "scripts/run_all_checks.sh",
"check:unused-dependencies": "yarn dlx depcheck",
"check:unused-exports": "yarn dlx ts-unused-exports tsconfig.json --ignoreTestFiles",
"deploy": "wrangler deploy",
"dev": "wrangler dev --env staging",
"format": "run-s --continue-on-error \"format:*\"",
"format:eslint": "yarn _eslint --fix",
"format:prettier": "yarn _prettier --write",
"lint": "run-p \"lint:*\"",
"lint:eslint": "yarn _eslint",
"lint:prettier": "yarn _prettier --check",
"lint:tsc": "tsc --noEmit",
"test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:production": "cross-env TEST_ENVIRONMENT=production yarn test --runInBand",
"test:staging": "cross-env TEST_ENVIRONMENT=staging yarn test --runInBand"
},
"dependencies": {
"fp-ts": "^2.16.11",
"io-ts": "^2.2.22",
"jose": "^6.2.2",
"toucan-js": "^4.1.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260413.1",
"@eslint/compat": "^2.0.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@iarna/toml": "^2.2.5",
"@jest/globals": "^30.3.0",
"@sentry/core": "^10.48.0",
"@testing-library/jest-dom": "^6.9.1",
"@types/iarna__toml": "^2.0.5",
"@types/jest": "^30.0.0",
"@types/node": "24.12.2",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"cross-env": "^10.1.0",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.5.0",
"jest": "^30.3.0",
"msw": "^2.13.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.2",
"prettier-plugin-packagejson": "^3.0.2",
"prettier-plugin-sh": "^0.18.1",
"typescript": "^6.0.2",
"wrangler": "^4.82.2"
},
"packageManager": "yarn@4.13.0",
"engines": {
"node": "^24.0.0"
}
}