-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.83 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
{
"name": "remix-aca",
"private": true,
"sideEffects": false,
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "remix vite:build",
"dev": "node ./server/index.js",
"env:init": "pwsh ./.azd/scripts/create-env-local.ps1",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "cross-env NODE_ENV=production node ./server/index.js",
"typecheck": "tsc"
},
"dependencies": {
"@0dep/pino-applicationinsights": "^0.1.2",
"@microsoft/applicationinsights-react-js": "3.4.2",
"@microsoft/applicationinsights-web": "2.8.17",
"@nasa-gcn/remix-seo": "^2.0.0",
"@remix-run/express": "^2.7.2",
"@remix-run/node": "^2.7.2",
"@remix-run/react": "^2.7.2",
"applicationinsights": "2.9.4",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"express-urlrewrite": "^2.0.1",
"helmet": "^7.1.0",
"isbot": "^5.1.0",
"morgan": "^1.10.0",
"pino": "^8.19.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@remix-run/dev": "^2.7.2",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.20",
"@types/morgan": "^1.9.9",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"pino-pretty": "^10.3.1",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^4.2.1"
}
}