-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.47 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
{
"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": "depcheck",
"check:unused-exports": "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.9",
"io-ts": "^2.2.22",
"jose": "^5.9.6",
"toucan-js": "^4.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241112.0",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@iarna/toml": "^2.2.5",
"@jest/globals": "^29.7.0",
"@sentry/types": "^8.45.1",
"@testing-library/jest-dom": "^6.6.3",
"@types/iarna__toml": "^2.0.5",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.18.1",
"cross-env": "^7.0.3",
"depcheck": "^1.4.7",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"jest": "^29.7.0",
"msw": "^2.6.8",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-sh": "^0.14.0",
"ts-jest": "^29.2.5",
"ts-unused-exports": "^10.1.0",
"typescript": "^5.7.2",
"wrangler": "^3.93.0"
},
"packageManager": "yarn@3.6.0",
"engines": {
"node": "^20.0.0"
}
}