-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.3 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@metacrypt/unispark-app",
"license": "UNLICENSED",
"author": "Akshat Mittal <hi@akshatmittal.com> (https://akshatmittal.com/)",
"homepage": "https://unispark.metacrypt.org",
"packageManager": "yarn@3.6.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build-stats": "cross-env ANALYZE=true yarn run build",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"clean-full": "rimraf .next out node_modules",
"lint": "next lint",
"build-types": "tsc --noEmit --pretty",
"prepare": "husky install",
"tunnel": "cloudflared tunnel --url http://localhost:3000"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@gfxlabs/oku": "^1.0.109",
"@mantine/core": "^6.0.19",
"@mantine/hooks": "^6.0.19",
"@mantine/next": "^6.0.19",
"@mantine/notifications": "^6.0.19",
"@tanstack/react-query": "^4.33.0",
"clsx": "^2.0.0",
"decimal.js": "^10.4.3",
"next": "^13.4.19",
"nextjs-google-analytics": "^2.3.3",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.9",
"uplot": "^1.6.25",
"uplot-react": "^1.1.5",
"usehooks-ts": "^2.9.1",
"zustand": "^4.4.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.19",
"@types/gtag.js": "^0.0.13",
"@types/node": "^18.17.12",
"@types/react": "^18.2.21",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
}
}