-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.11 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
{
"name": "bridge-cloud-web-application",
"description": "UI Application for Bridge Cloud",
"engines": {
"node": ">=15.0.0"
},
"private": true,
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adapters/aws-lambda/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "serverless deploy --stage",
"dev": "vite --mode development",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fix:format": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"lint:fix": "eslint \"src/**/*.ts*\" --fix",
"lint:format": "prettier --check '**/*.{yaml,ymls}'",
"prepare": "husky install",
"preview": "qwik build preview && vite preview --open --host",
"serve": "qwik build && SLS_DEBUG=* && serverless offline",
"serverless": "serverless",
"serverless:preview": "qwik build && serverless offline",
"sls-deploy-cdn": "serverless deploy -c --verbose",
"sls-deploy-s3": "npm run serverless client deploy",
"sls-remove-cdn-stack": "serverless remove --verbose",
"start": "vite --host --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "1.2.6",
"@builder.io/qwik-city": "1.2.6",
"@builder.io/qwik-react": "0.5.0",
"@emotion/react": "11.10.8",
"@emotion/styled": "11.10.8",
"@mui/material": "5.11.9",
"@mui/x-data-grid": "5.17.24",
"@types/compression": "^1.7.2",
"@types/eslint": "8.40.2",
"@types/node": "^20.4.0",
"@types/qrcode": "^1.5.0",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"autoprefixer": "^10.4.14",
"compression": "^1.7.4",
"eslint": "8.44.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-qwik": "1.2.6",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"isomorphic-fetch": "^3.0.0",
"lint-staged": "^13.2.2",
"postcss": "^8.4.23",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "^0.2.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"serverless": "^3.32.2",
"serverless-deployment-bucket": "^1.6.0",
"serverless-http": "^3.2.0",
"serverless-manifest-plugin": "1.0.9",
"serverless-offline": "^12.0.4",
"serverless-s3-deploy": "0.10.1",
"serverless-s3-sync": "^3.1.0",
"source-map-support": "^0.5.21",
"tailwindcss": "^3.3.2",
"typescript": "5.1.6",
"undici": "5.22.1",
"vite": "4.4.4",
"vite-tsconfig-paths": "4.2.0"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css,md}": "prettier --write"
},
"dependencies": {
"@aws-amplify/auth": "5.4.1",
"@modular-forms/qwik": "^0.18.1",
"@types/isomorphic-fetch": "^0.0.36",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"flowbite": "^1.6.5",
"qrcode": "^1.5.3"
}
}