-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
163 lines (163 loc) · 8.92 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
{
"name": "betarena-scores-platform",
"version": "2.19.6",
"description": "Betarena Official Scores Platform (PWA)",
"author": "migbash",
"license": "ISC",
"type": "module",
"engines": {
"node": "v18.19.0",
"npm": "10.2.3"
},
"engineStrict": true,
"scripts": {
"__NPM-LIFECYCLE__": "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────",
"prepare": "is-ci || husky install",
"start": "npm run 'vite/start'",
"build": "npm run 'vite/build'",
"test": "pnpm run playwright/integration && pnpm run playwright/unit",
"__VITE__": "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────",
"vite/dev": "cross-env NODE_OPTIONS='-r dotenv/config' vite dev --host --port 3050 --force",
"vite/dev/debug": "cross-env NODE_OPTIONS='--inspect' vite dev --host --port 3050",
"vite/dev/1-click/npm": "rm -rf ./.svelte-kit/ && rm -rf node_modules/.vite && npm run sass-watch & npm run 'vite/dev'",
"vite/dev/1-click/pnpm": "rm -rf ./.svelte-kit/ && rm -rf node_modules/.vite && pnpm run sass-watch & pnpm run 'vite/dev'",
"vite/staging": "pnpm run vite/dev -- --mode staging",
"vite/build": "cross-env NODE_OPTIONS='-r dotenv/config --max-old-space-size=8192' vite build",
"vite/preview": "vite preview --host --port 4173",
"vite/preview/debug": "cross-env NODE_OPTIONS='--inspect' vite preview --host --port 4173",
"vite/start": "cross-env NODE_OPTIONS='-r dotenv/config' node build/index.js",
"vite/start/heroku": "node server-heroku.js",
"vite/start/docker": "cross-env NODE_OPTIONS='-r dotenv/config' node dual.instance.js",
"__DEPENDENCY__": "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────",
"npm/init": "rm -rf node_modules && npm install",
"npm/pkg/next/@betarena/scores-lib": "npm i @betarena/scores-lib@latest",
"npm/pkg/link/@betarena/scores-lib": "npm link @betarena/scores-lib && npm ls --link --global",
"npm/pkg/next/@betarena/ad-engine": "npm i @betarena/ad-engine@latest",
"npm/pkg/link/@betarena/ad-engine": "npm link @betarena/ad-engine && npm ls --link --global",
"pnpm/init": "rm -rf node_modules && pnpm import && pnpm install",
"pnpm/pkg/link/@betarena/scores-lib": "pnpm link --global @betarena/scores-lib",
"pnpm/pkg/link/@betarena/ad-engine": "pnpm link --global @betarena/ad-engine",
"__ALTERNATIVE__": "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────",
"sass-watch": "sass --watch static/app.scss static/app.css",
"tsc/build/server": "tsc --project tsconfig.server.json",
"__PLUGINS__": "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────",
"svelte-check": "svelte-check --tsconfig ./tsconfig.json",
"svelte-check/watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"__FORMAT__": "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────",
"prettier/eslint/lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"prettier/format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"prettier/format/src": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ./src",
"__TESTS__": "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────",
"playwright/integration": "playwright test",
"playwright/integration/ui": "playwright test --ui",
"vitest/unit": "vitest",
"vitest/coverage": "vitest run --coverage"
},
"dependencies": {
"@betarena/ad-engine": "0.0.70",
"@betarena/scores-lib": "4.0.40",
"@lukeed/uuid": "2.0.1",
"@metamask/sdk": "0.1.0",
"@moralisweb3/client-firebase-auth-utils": "2.18.4",
"@moralisweb3/client-firebase-evm-auth": "2.18.4",
"@playwright/test": "1.36.1",
"@sentry/browser": "7.73.0",
"@sentry/sveltekit": "7.73.0",
"@sentry/tracing": "7.49.0",
"@tiptap/core": "2.7.4",
"@tiptap/extension-bubble-menu": "2.8.0",
"@tiptap/extension-image": "2.8.0",
"@tiptap/extension-link": "2.7.4",
"@tiptap/extension-placeholder": "2.7.4",
"@tiptap/pm": "2.7.4",
"@tiptap/starter-kit": "2.7.4",
"@types/node": "20.8.5",
"@walletconnect/web3-provider": "1.8.0",
"@web3modal/ethers5": "3.5.7",
"boxen": "7.1.1",
"chalk": "5.3.0",
"chart.js": "4.4.1",
"colorthief": "2.4.0",
"compression": "1.7.4",
"cookie": "0.5.0",
"cross-env": "7.0.3",
"device-detector-js": "3.0.3",
"dompurify": "3.1.6",
"dotenv": "16.3.1",
"email-validator": "2.0.4",
"ethers": "5.7.2",
"express": "4.18.2",
"express-sslify": "1.2.0",
"firebase": "9.20.0",
"franc": "6.2.0",
"graphql-request": "5.1.0",
"graphql-subscriptions-client": "0.16.4",
"heroku-ssl-redirect": "0.1.1",
"ibantools": "4.3.3",
"ioredis": "5.3.2",
"lz-string": "1.5.0",
"masonry-layout": "4.2.2",
"moralis": "2.18.4",
"request-ip": "3.3.0",
"svelte-apexcharts": "1.0.2",
"svelte-easy-crop": "3.0.1",
"table": "6.8.1",
"ua-parser-js": "1.0.35",
"unique-username-generator": "1.1.3",
"vite-plugin-css-injected-by-js": "3.2.1",
"vite-plugin-preload": "0.3.1",
"xml-formatter": "2.6.1"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@playwright/test": "1.36.1",
"@sveltejs/adapter-node": "1.3.1",
"@sveltejs/kit": "1.22.3",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/svelte": "4.0.3",
"@types/express": "5.0.0",
"@types/masonry-layout": "4.2.5",
"@types/ua-parser-js": "0.7.36",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"conventional-changelog-cli": "4.1.0",
"cypress": "12.17.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.51.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-svelte": "2.34.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"jsdom": "22.1.0",
"node-fetch": "3.3.2",
"prettier": "2.8.8",
"prettier-plugin-svelte": "2.10.1",
"sass": "1.69.5",
"svelte": "4.0.5",
"svelte-check": "3.4.6",
"svelte-dnd-action": "0.9.49",
"svelte-preprocess": "5.0.4",
"svelte-seo": "1.5.3",
"tslib": "2.5.0",
"typescript": "5.3.2",
"validate-branch-name": "1.3.0",
"vite": "4.4.4",
"vite-plugin-compression": "0.5.1",
"vitest": "0.33.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"validate-branch-name": {
"pattern": "^(master|main|develop|dev){1}$|^(feature|fix|hotfix|release|refactor|chore).+$",
"errorMsg": "❌ Uh-oh! Please check package.json > validate-branch-name for allowed branch names!"
}
}