-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
216 lines (216 loc) · 7.65 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
{
"name": "atlas-system",
"private": true,
"sideEffects": false,
"scripts": {
"db": "npx prisma migrate deploy && npx prisma generate",
"build": "run-s build:*",
"build:remix": "remix build",
"build:server": "esbuild --platform=node --format=cjs ./server.ts --outdir=build --bundle",
"dev": "npm run build; npm run saml:cert; run-p dev:* quirrel ",
"prod": "npm run build; npm run saml:cert; run-p dev:ldap dev:saml prod:server",
"dev:ldap": "docker run -p 389:1389 -v \"$(pwd)/test/ldap/config\":/ldifs bitnami/openldap:latest",
"dev:saml": "node ./test/saml-idp/bin/run.js --acsUrl http://localhost:3000/auth/asc --audience http://localhost:3000/login",
"dev:build": "cross-env NODE_ENV=development npm run build:server -- --watch",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"asdfdev:remix:browser": "open-cli http://localhost:3000 --background",
"dev:smtp": "docker run -p 3030:80 -p 25:25 -p 143:143 rnwood/smtp4dev",
"dev:search": "./node_modules/.bin/dotenv meilisearch",
"dev:server": "cross-env NODE_ENV=development node --inspect --require ./node_modules/dotenv/config --require ./mocks ./build/server.js",
"prod:server": "cross-env NODE_ENV=production node --inspect --require ./node_modules/dotenv/config --require ./mocks ./build/server.js",
"format": "prettier --write .",
"quirrel": "./node_modules/.bin/dotenv quirrel",
"quirrel:browser": "open-cli http://localhost:9181 --background",
"quirrel:ci": "./node_modules/.bin/dotenv quirrel ci",
"saml:cert": "openssl req -x509 -new -newkey rsa:2048 -nodes -subj '/C=US/ST=California/L=San Francisco/O=JankyCo/CN=Test Identity Provider' -keyout test/saml-idp/idp-private-key.pem -out test/saml-idp/idp-public-cert.pem -days 7300",
"saml:setup": "git submodule update --init --rebase --remote; cd test/saml-idp/; npm install",
"format:repo": "npm run format && npm run lint:repo -- --fix",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:repo": "npm run lint -- --config ./.eslintrc.repo.js",
"setup": "prisma generate && prisma migrate deploy && prisma db seed",
"start": "cross-env NODE_ENV=production node ./build/server.js",
"start:mocks": "cross-env NODE_ENV=production node --require ./mocks --require dotenv/config ./build/server.js",
"test": "vitest",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 \"npx cypress open\"",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811 \"npx cypress run\"",
"typecheck": "tsc && tsc -p cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run",
"commit": "git add . && npm run pre-commit && git add . && cz --no-verify",
"pre-commit": "lint-staged"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"trailingComma": "all",
"singleQuote": true,
"semi": true
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/postgres-data"
],
"dependencies": {
"@authenio/samlify-node-xmllint": "^2.0.0",
"@hookform/resolvers": "^3.3.0",
"@icons-pack/react-simple-icons": "^9.0.0",
"@next-boost/hybrid-disk-cache": "^0.3.0",
"@prisma/client": "^5.2.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.3",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@react-email/body": "0.0.3",
"@react-email/button": "0.0.10",
"@react-email/container": "0.0.8",
"@react-email/head": "0.0.5",
"@react-email/heading": "0.0.8",
"@react-email/hr": "0.0.5",
"@react-email/html": "0.0.4",
"@react-email/img": "0.0.5",
"@react-email/link": "0.0.5",
"@react-email/preview": "0.0.6",
"@react-email/render": "0.0.7",
"@react-email/section": "0.0.9",
"@react-email/tailwind": "0.0.8",
"@react-email/text": "0.0.5",
"@remix-run/css-bundle": "^1.19.3",
"@remix-run/dev": "^1.19.3",
"@remix-run/express": "^1.19.3",
"@remix-run/node": "^1.19.3",
"@remix-run/react": "^1.19.3",
"@tanstack/react-table": "^8.9.3",
"axios": "^1.5.0",
"axios-ntlm": "^1.4.1",
"bcryptjs": "^2.4.3",
"bytes": "^3.1.2",
"chart.js": "^4.4.0",
"chartjs-adapter-date-fns": "^3.0.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"dotenv-cli": "^7.3.0",
"dotenv": "^16.3.1",
"execa": "^8.0.1",
"express": "^4.18.2",
"isbot": "^3.6.13",
"ldap-authentication": "^3.0.3",
"lucide-react": "^0.269.0",
"meilisearch": "^0.34.1",
"morgan": "^1.10.0",
"mssql": "^9.1.3",
"node-ssh": "^13.1.0",
"nodemailer": "^6.9.4",
"postcss-import": "^15.1.0",
"quirrel": "^1.13.4",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"remix-auth": "^3.5.1",
"remix-auth-form": "^1.3.0",
"remix-auth-saml": "^1.2.0",
"remix-image": "^1.4.0",
"remix-image-sharp": "^0.1.4",
"remix-utils": "^6.6.0",
"sharp": "^0.32.5",
"slugify": "^1.6.6",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.6",
"tailwindcss": "^3.3.3",
"tcp-ping": "^0.1.1",
"tiny-invariant": "^1.3.1",
"esbuild": "^0.19.2",
"zod": "^3.22.2"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@remix-run/eslint-config": "^1.19.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "^10.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "^9.0.4",
"@semantic-release/npm": "^10.0.5",
"@semantic-release/release-notes-generator": "^11.0.6",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^6.1.2",
"@types/bcryptjs": "^2.4.2",
"@types/bytes": "^3.1.1",
"@types/compression": "^1.7.2",
"@types/eslint": "^8.44.2",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.5",
"@types/mssql": "^8.1.2",
"@types/node": "^20.5.7",
"@types/nodemailer": "^6.4.9",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-v8": "^0.34.3",
"autoprefixer": "^10.4.15",
"cookie": "^0.5.0",
"cypress": "^12.17.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-prefer-let": "^3.0.1",
"faker": "^6.6.6",
"happy-dom": "^10.11.0",
"lint-staged": "^14.0.1",
"msw": "^1.2.5",
"npm-run-all": "^4.1.5",
"open-cli": "^7.2.0",
"postcss": "^8.4.28",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.3",
"prisma": "^5.2.0",
"react-email": "1.9.4",
"semantic-release": "^21.1.1",
"start-server-and-test": "^2.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.3"
},
"engines": {
"node": ">=14"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.{ts,css,less,scss,js,json,md,yaml,html}": [
"npm run format"
]
},
"version": "1.43.1"
}