-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.4 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
{
"name": "exortek-auth",
"private": true,
"type": "module",
"description": "Framework-agnostic authentication toolkit for Node.js — a monorepo of 20 focused packages under the @exortek scope. Built on node:crypto.",
"homepage": "https://github.com/ExorTek/auth#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ExorTek/auth.git"
},
"bugs": {
"url": "https://github.com/ExorTek/auth/issues"
},
"license": "MIT",
"workspaces": [
"packages/*",
"web"
],
"scripts": {
"build": "yarn workspace @exortek/shared run build:types && yarn workspaces foreach --all --topological --exclude web run build",
"build:watch": "yarn workspaces foreach --all --parallel --exclude web run build:watch",
"test": "node --test 'packages/*/tests/**/*.test.js'",
"test:coverage": "node --test --experimental-test-coverage 'packages/*/tests/**/*.test.js'",
"typecheck": "yarn workspaces foreach --all --exclude web run typecheck",
"lint": "eslint 'packages/*/src/**/*.js' 'packages/*/tests/**/*.js'",
"lint:fix": "eslint --fix 'packages/*/src/**/*.js' 'packages/*/tests/**/*.js'",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "yarn workspaces foreach --all --exclude web run clean && rm -rf node_modules/.cache",
"web:dev": "yarn workspace web dev",
"web:build": "yarn workspace web build",
"web:preview": "yarn workspace web preview",
"changeset": "changeset",
"changeset:ver": "changeset version",
"release": "yarn npm login && yarn changeset version && yarn build && yarn workspaces foreach --all --topological --no-private npm publish --tolerate-republish --access public && changeset tag",
"verify": "yarn typecheck && yarn lint && yarn format:check && yarn test"
},
"devDependencies": {
"@changesets/cli": "^3.0.2",
"@fastify/cookie": "^11.1.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@sinclair/typebox": "^0.34.52",
"argon2": "^0.45.1",
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"dotenv": "^17.4.2",
"eslint": "^10.10.0",
"express": "^5.2.1",
"fastify": "^5.12.4",
"ioredis": "^6.0.0",
"prettier": "^3.9.6",
"redis": "^6.2.1",
"rollup": "^4.63.2",
"rollup-plugin-dts": "^6.5.1",
"typescript": "6.0.3"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "yarn@4.17.1"
}