-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.36 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.36 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
73
74
75
76
{
"name": "lania-frontend",
"version": "2.0.0",
"scripts": {
"dev": "next dev -p 3008",
"build": "next build",
"start": "next start",
"build-analyze": "cross-env ANALYZE=true yarn build",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"check-versions": "yarn ncu",
"mutate-versions": "yarn ncu -u",
"run-misc": "cross-env TS_NODE_PROJECT=tsconfig.commonjs.json yarn ts-node",
"build-ido-json": "yarn run-misc ./misc/build-ido-json.ts",
"prepare": "husky install",
"push-frontend": "git push frontend master && start https://api.vercel.com/v1/integrations/deploy/prj_sXoOdtotBPQDvqrLqJ3jZhs8LYx1/kHhKT0YUfU"
},
"sideEffects": false,
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint"
]
},
"resolutions": {
"@solana/spl-token": "0.1.8",
"@solana/wallet-adapter-base": "0.9.4",
"@solana/web3.js": "1.36.0",
"bn.js": "5.2.0"
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@raydium-io/raydium-sdk": "^1.0.1-beta.46",
"@sentry/nextjs": "^6.19.6",
"@solana/wallet-adapter-base": "^0.9.5",
"@solana/wallet-adapter-react": "^0.15.4",
"@solana/wallet-adapter-wallets": "^0.15.5",
"@solana/web3.js": "^1.36.0",
"@uiw/react-date-input": "^4.21.0",
"@uiw/react-date-picker": "^4.21.0",
"bn.js": "^5.2.0",
"next": "^12.1.5",
"nextjs-progressbar": "^0.0.14",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.2",
"tailwind-merge": "^1.2.1",
"tailwindcss": "^3.0.24",
"zustand": "^3.7.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.5",
"@types/node": "^17.0.24",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"autoprefixer": "^10.4.4",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"next-build-id": "^3.0.0",
"next-global-css": "^1.3.1",
"next-transpile-modules": "^9.0.0",
"npm-check-updates": "^12.5.9",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"shx": "^0.3.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}