-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "spl-token-faucet",
"version": "1.0.3",
"private": true,
"scripts": {
"dev": "bash git-tags.sh && next dev",
"build": "bash git-tags.sh && next build",
"start": "next start",
"lint": "npx eslint . --ext .ts,.tsx",
"format": "prettier --write \"./**/*.{tsx,ts,js}\"",
"prepare": "husky install"
},
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@next/eslint-plugin-next": "^13.1.5",
"@primer/css": "^20.8.0",
"@primer/octicons-react": "^17.10.2",
"@primer/react": "^35.18.0",
"@solana/spl-token": "^0.3.7",
"@solana/wallet-adapter-base": "^0.9.20",
"@solana/wallet-adapter-react": "^0.15.28",
"@solana/wallet-adapter-react-ui": "^0.9.27",
"@solana/wallet-adapter-wallets": "^0.19.11",
"@solana/web3.js": "^1.73.0",
"deepmerge": "^4.2.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"mongoose": "^6.8.4",
"next": "13.1.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.57.1",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"eslint": "8.32.0",
"eslint-config-next": "13.1.5",
"octicons-react": "link:@types/@primer/octicons-react",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"prettier": "^2.8.3",
"typescript": "4.9.4"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{tsx,ts,css}": "prettier --write"
}
}