forked from MasterKale/SimpleWebAuthn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.86 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
{
"name": "simplewebauthn-monorepo",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"bootstrap:ci": "lerna bootstrap --hoist",
"clean": "lerna clean -y && rm -f ./packages/**/package-lock.json && rm -rf ./packages/**/dist",
"get-it-onto-npm": "lerna bootstrap && rm -f ./packages/**/package-lock.json && lerna publish",
"lint": "prettier --write packages/**/src/**/*.ts example/**/*.ts && eslint --fix packages/**/src/**/*.ts example/**/*.ts",
"docs": "npm run bootstrap:ci && typedoc --tsconfig tsconfigdoc.json",
"test": "lerna run test",
"build:types": "lerna run build --scope=@simplewebauthn/typescript-types",
"build:iso-webcrypto": "lerna run compile --scope=@simplewebauthn/iso-webcrypto",
"build:browser": "lerna run build --scope=@simplewebauthn/browser",
"build:server": "lerna run build --scope=@simplewebauthn/server",
"dev:server": "lerna exec npm run test:watch --scope=@simplewebauthn/server",
"dev:browser": "lerna exec npm run test:watch --scope=@simplewebauthn/browser"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"husky": "^7.0.2",
"jest": "^27.0.6",
"jest-environment-jsdom": "^27.0.6",
"lerna": "^6.0.3",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.20",
"nx": "^15.0.13",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"ts-jest": "^27.0.5",
"ts-morph": "^11.0.3",
"ts-node": "^10.2.1",
"typedoc": "^0.23.21",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}