-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.88 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
{
"name": "privacypass-issuer",
"version": "0.1.0",
"type": "module",
"main": "dist/worker.mjs",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "tsc && node scripts/cli.js build",
"deploy:production": "wrangler deploy --no-bundle --env production",
"dev": "wrangler dev --env production --test-scheduled",
"format": "prettier --write '*.{json,js}' 'scripts/*.{js,ts}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"lint": "eslint src && prettier --check '*.{json,js}' 'scripts/*.{js,ts}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"test": "npm run build && node --experimental-vm-modules --no-warnings node_modules/.bin/jest",
"test:e2e": "tsc -b ./test/e2e && node --experimental-vm-modules --no-warnings dist/index.js"
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
]
}
},
"devDependencies": {
"@cloudflare/blindrsa-ts": "0.3.2",
"@cloudflare/workers-types": "4.20240605.0",
"@types/jest": "29.5.11",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"commander": "12.1.0",
"dotenv": "16.4.0",
"esbuild": "0.21.5",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-typescript": "3.0.0",
"git-rev-sync": "3.0.2",
"jest": "29.7.0",
"jest-environment-miniflare": "2.14.4",
"jest-runner-eslint": "2.1.2",
"node-fetch": "^3.3.2",
"prettier": "3.2.2",
"sade": "1.8.1",
"ts-jest": "29.1.2",
"wrangler": "3.60.3"
},
"dependencies": {
"@cloudflare/privacypass-ts": "0.5.1",
"@sentry/cli": "2.26.0",
"@sentry/types": "7.95.0",
"cron-parser": "4.9.0",
"promjs": "0.4.2",
"toucan-js": "3.3.1",
"typescript": "5.3.3"
}
}