-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "ciam-expressjs-vanilla-samples",
"version": "1.0.0",
"license": "MIT",
"private": true,
"workspaces": [
"hosted-webauthn-for-logged-out-users",
"login-with-email",
"login-with-google",
"login-with-sms",
"passkey-authentication",
"password-authentication",
"password-authentication-drs",
"webauthn-cross-device",
"hosted-idv",
"login-with-magiclink",
"login-with-mfa",
"orchestration",
"saml-idp",
"shared"
],
"devDependencies": {
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"husky": "8.0.3",
"prettier": "^2.8.4"
},
"scripts": {
"prepare": "husky install && rm -rf .husky/pre-commit && npx husky add .husky/pre-commit \"yarn lint && yarn format && git add .\"",
"start:npm": "npm run --cwd $SAMPLE start",
"start": "yarn --cwd $SAMPLE start",
"lint": "eslint \"**/*.{js,html}\" --fix",
"format": "prettier . --write"
}
}