-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.55 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
{
"name": "jackson-remix-auth",
"private": true,
"description": "A remix demo app showing SSO with jackson",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"cross-env NODE_ENV=development PORT=3366 remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"postinstall": "remix setup node",
"start": "cross-env NODE_ENV=production PORT=3366 BASE_URL=http://localhost:3366 BOXYHQSAML_ISSUER=http://localhost:3366 COOKIE_SECRETS=\"<Insert your cookie secret here>\" CLIENT_SECRET_VERIFIER=\"<Insert your client secret verifier here>\" JACKSON_API_KEYS=\"<Insert your keys here>\" remix-serve build"
},
"dependencies": {
"@boxyhq/remix-auth-sso": "1.1.0",
"@boxyhq/saml-jackson": "1.3.1",
"@remix-run/react": "1.7.2",
"@remix-run/serve": "1.7.2",
"cross-env": "7.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"remix": "1.7.2",
"remix-auth": "3.3.0",
"tiny-invariant": "1.3.1"
},
"devDependencies": {
"@remix-run/dev": "1.7.2",
"@remix-run/eslint-config": "1.4.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"autoprefixer": "10.4.12",
"concurrently": "7.4.0",
"eslint": "8.24.0",
"postcss": "8.4.17",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.1.13",
"tailwindcss": "3.1.8",
"typescript": "4.8.4"
},
"engines": {
"node": ">=14"
}
}