-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
38 lines (38 loc) · 1019 Bytes
/
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
{
"name": "mango-caps",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && prisma generate",
"start": "next start",
"watch": "tsc --watch",
"ship": "ts-node -O '{\"module\": \"commonjs\"}' tasks/ship.ts"
},
"dependencies": {
"@prisma/client": "^3.0.2",
"@project-serum/sol-wallet-adapter": "0.1.1",
"@solana/spl-token": "0.0.11",
"@solana/spl-token-swap": "0.0.2",
"@solana/web3.js": "^1.2.6",
"next": "10.0.9",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-router-dom": "^5.2.0",
"react-tilt": "^0.1.4",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"autoprefixer": "^10.2.5",
"babel-plugin-styled-components": "^1.12.0",
"fast-csv": "^4.3.6",
"postcss": "^8.2.8",
"prisma": "^3.0.2",
"tailwindcss": "^2.0.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}