-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "mock-saml",
"version": "1.4.2",
"description": "Mock SAML is a free SAML 2.0 Identity Provider for testing SAML SSO integrations.",
"private": true,
"license": "Apache 2.0",
"scripts": {
"dev": "next dev --webpack -p 4000",
"build": "next build --webpack",
"start": "next start -p 4000",
"lint": "eslint -c eslint.config.cjs ./",
"check-format": "prettier --check .",
"format": "prettier --write .",
"release": "git checkout release && git merge origin/main && release-it && git checkout main && git merge origin/release && git push origin main"
},
"dependencies": {
"@boxyhq/saml20": "1.15.2",
"next": "16.2.4",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-gtm-module": "2.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "4.2.4",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-gtm-module": "2.0.4",
"@typescript-eslint/parser": "8.59.1",
"eslint": "10.2.1",
"eslint-config-next": "16.2.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-i18next": "6.1.4",
"json": "11.0.0",
"postcss": "8.5.12",
"prettier": "3.8.3",
"prettier-plugin-tailwindcss": "0.8.0",
"release-it": "20.0.1",
"tailwindcss": "4.2.4",
"typescript": "6.0.3"
},
"engines": {
"node": ">=18.14.0"
}
}