forked from MasterKale/SimpleWebAuthn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.72 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
{
"name": "simplewebauthn-monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"bootstrap-monorepo": "./bootstrap.sh",
"clean": "rm -rf ./packages/**/node_modules && rm -rf ./packages/**/dist && rm -rf ./packages/**/npm",
"lint": "deno lint packages/**/src/**/*.ts example/**/*.ts",
"test": "pnpm run test:browser; pnpm run test:server",
"test:browser": "lerna run test --scope=@simplewebauthn/browser",
"test:server": "lerna run test --scope=@simplewebauthn/server",
"build:types": "lerna run build --scope=@simplewebauthn/types",
"build:browser": "lerna run build --scope=@simplewebauthn/browser",
"build:server": "lerna run build --scope=@simplewebauthn/server",
"update-version": "lerna version --no-push",
"publish:types": "pnpm run build:types && (cd packages/types/npm; pnpm publish)",
"publish:browser": "pnpm run build:browser && (cd packages/browser; pnpm publish)",
"publish:server": "pnpm run build:server && (cd packages/server/npm; pnpm publish)",
"dev:browser": "lerna run test:watch --scope=@simplewebauthn/browser",
"dev:server": "lerna run test:watch --scope=@simplewebauthn/server"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/jest": "^29.5.3",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lerna": "^7.1.5",
"lint-staged": "^14.0.0",
"nodemon": "^3.0.1",
"nx": "^16.7.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-morph": "^19.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"deno lint",
"deno fmt",
"git add"
]
}
}