-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.81 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.81 KB
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
{
"name": "memecoin-tracker",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"tailwindcss -i ./src/css/input.scss -o ./src/css/tailwind.css --watch\" \"twlit --output ./src/css/twlit.js --input ./src/css/tailwind.css\"",
"clear-cache": "vite build --clearCache",
"build": "vite build",
"preview": "vite preview",
"postbuild": "copy _headers dist",
"lighthouse": "concurrently \"vite preview\" \"lighthouse http://localhost:4173 --budget-path=./budget.json --view\"",
"light-build": "node utils/clean-lighthouse-report.js && cross-env VITE_APP_URL=http://localhost:4173 vite build && concurrently \"npm run lighthouse\"",
"git-commit-push": "git diff-index --quiet HEAD || (git add . && git commit -m \"Something just got fixed!\" && git push origin main)",
"git-commit-push-force": "git add . && git commit -m \"Something just got fiexd!\" --no-verify && git push origin main --force"
},
"dependencies": {
"@dscvr-one/canvas-client-sdk": "^1.1.1",
"lit": "^2.7.2",
"page": "^1.11.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.3.5",
"tw-elements": "^1.1.0",
"twlit": "^0.0.1-alpha.37"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-vue": "^5.0.1",
"concurrently": "^8.2.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.69.5",
"typescript": "^5.5.2",
"vite": "^5.0.10"
},
"description": "",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/italiancode/memecointracker.git"
},
"author": "Agbaka Daniel Ugonna",
"license": "MIT",
"bugs": {
"url": "https://github.com/italiancode/memecointracker/issues"
},
"homepage": "https://github.com/italiancode/memecointracker#readme"
}