-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
109 lines (109 loc) · 2.89 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "sol-surfer-ui",
"version": "0.1.1",
"private": true,
"homepage": "https://solsurfer.xyz",
"scripts": {
"predeploy": "git pull --ff-only && yarn && yarn gulp && yarn build",
"deploy": "gh-pages -d build",
"dev": "gulp less && craco start",
"start": "craco start",
"build": "gulp less && craco build",
"test": "craco test",
"eject": "react-scripts eject",
"prettier": "prettier --write src",
"gulp": "gulp less"
},
"dependencies": {
"@ant-design/icons": "^4.2.1",
"@craco/craco": "^5.6.4",
"@ledgerhq/hw-transport-webusb": "^5.41.0",
"@project-serum/associated-token": "0.1.0",
"@project-serum/awesome-serum": "1.0.1",
"@project-serum/pool": "0.2.2",
"@project-serum/serum": "^0.13.38",
"@project-serum/sol-wallet-adapter": "^0.2.0",
"@solana/spl-token": "^0.1.5",
"@solana/spl-token-registry": "^0.2.123",
"@solana/web3.js": "0.86.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@tsconfig/node12": "^1.0.7",
"@types/bn.js": "^4.11.6",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.4",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"antd": "^4.6.0",
"bn.js": "^5.1.3",
"craco-less": "^1.17.0",
"immutable-tuple": "^0.4.10",
"jazzicon": "^1.5.0",
"nanoid": "^3.1.22",
"qrcode.react": "^1.0.0",
"react": "^16.13.1",
"react-app-polyfill": "^1.0.5",
"react-copy-to-clipboard": "^5.0.3",
"react-css-theme-switcher": "^0.3.0",
"react-dom": "^16.13.1",
"react-is": "^17.0.1",
"react-joyride": "^2.3.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"recoil": "^0.3.1",
"styled-components": "^5.1.1",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/ledgerhq__hw-transport": "^4.21.3",
"@types/ledgerhq__hw-transport-webusb": "^4.70.1",
"autoprefixer": "^10.2.6",
"gh-pages": "^3.1.0",
"git-format-staged": "^2.1.0",
"gulp": "^4.0.2",
"gulp-csso": "^4.0.1",
"gulp-debug": "^4.0.0",
"gulp-less": "^4.0.1",
"gulp-postcss": "^9.0.0",
"husky": "^4.2.5",
"less-plugin-npm-import": "^2.1.0",
"lint-staged": ">=10",
"postcss": "^8.3.2",
"prettier": "^2.0.5"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"transformIgnorePatterns": [
"^.+\\.cjs$"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "always",
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,css,md}": "prettier --write"
}
}