forked from BalloonBox-Inc/near-oracle-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.51 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
{
"name": "near-oracle-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"prepare": "husky install",
"lint": "next lint",
"lint:ts": "tslint --project tsconfig.json --config tslint.json",
"check-types": "tsc --pretty --noEmit"
},
"lint-staged": {
"*.ts": "yarn lint:ts",
"*.tsx": "yarn lint:ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn run test:unit"
}
},
"dependencies": {
"@metamask/detect-provider": "^1.2.0",
"@types/ramda": "^0.28.15",
"@types/react-lottie": "^1.2.6",
"antd": "^4.20.4",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"husky": "^8.0.1",
"mime": "^3.0.0",
"near-api-js": "^0.44.2",
"next": "12.1.6",
"nft.storage": "^7.0.0",
"node-fetch": "^3.2.6",
"plaid": "^10.4.0",
"ramda": "^0.28.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-lottie": "^1.2.3",
"react-plaid-link": "^3.3.2",
"react-spinners": "^0.11.0",
"react-starfield-animation": "^1.0.1",
"tree-node-cli": "^1.5.2"
},
"devDependencies": {
"@types/node": "17.0.31",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.3",
"autoprefixer": "^10.4.7",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"postcss": "^8.4.13",
"tailwindcss": "^3.0.24",
"typescript": "4.6.4"
}
}