-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 921 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 921 Bytes
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": "^10.1.8",
"eslint-plugin-html": "^8.1.4",
"eslint-plugin-import": "^2.32.0",
"husky": "9.1.7",
"prettier": "^3.8.1"
},
"scripts": {
"prepare": "husky",
"start:npm": "npm run --cwd $SAMPLE start",
"start": "yarn --cwd $SAMPLE start",
"lint": "eslint \"**/*.{js,html}\" --fix",
"format": "prettier . --write"
}
}