-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
79 lines (79 loc) · 2.59 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
{
"name": "betarena-scores-platform-app",
"description": "Betarena Official Scores Platform PWA",
"version": "0.5.6",
"engines": {
"npm": "8.19.1",
"node": "16.17.0"
},
"scripts": {
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"debug": "cross-env NODE_OPTIONS='--inspect' vite dev --host --port 3050",
"debug:bull": "cross-env NODE_DEBUG='bull' vite preview --host --port 5000",
"debug:preview": "cross-env NODE_OPTIONS='--inspect' vite preview --host --port 5000",
"dev": "vite dev --host --port 3050",
"dev:docker": "vite dev --host --port 5055",
"dev:docker:up": "docker-compose -f docker-compose.dev.yml up",
"staging": "npm run dev -- --mode staging",
"build": "vite build",
"preview": "vite preview --host --port 5000",
"start:docker": "node server-docker.js",
"start:heroku": "node server-heroku.js"
},
"devDependencies": {
"@sveltejs/adapter-node": "1.0.0-next.88",
"@sveltejs/kit": "1.0.0-next.477",
"@types/bull": "^3.15.8",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"node-fetch": "^3.1.0",
"prettier": "^2.4.1",
"prettier-plugin-svelte": "^2.4.0",
"svelte": "^3.50.0",
"svelte-check": "^2.9.0",
"svelte-preprocess": "^4.9.4",
"svelte-seo": "^1.3.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"vite": "^3.1.0",
"vite-plugin-chunk-split": "^0.4.1",
"vite-plugin-compress": "^2.1.1",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-progress": "^0.0.3"
},
"type": "module",
"dependencies": {
"@lukeed/uuid": "^2.0.0",
"@moralisweb3/client-firebase-auth-utils": "^2.11.1",
"@moralisweb3/client-firebase-evm-auth": "^2.11.1",
"@moralisweb3/next": "^2.11.1",
"@sentry/browser": "^7.12.1",
"@sentry/tracing": "^7.12.1",
"bull": "^4.9.0",
"bullmq": "^3.1.1",
"colorthief": "^2.3.2",
"compression": "^1.7.4",
"cookie": "^0.5.0",
"express": "^4.17.3",
"express-sslify": "^1.2.0",
"firebase": "^9.9.4",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"heroku-ssl-redirect": "^0.1.1",
"ioredis": "^5.2.3",
"moralis": "^2.11.1",
"next-auth": "^4.18.8",
"request-ip": "^3.3.0",
"sitemap": "^7.1.1",
"svelte-seo": "^1.3.1",
"xml-formatter": "^2.6.1",
"zlib": "^1.0.5"
}
}