forked from deezy-inc/deezy-place
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.31 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
{
"name": "nosft",
"version": "0.1.1",
"private": true,
"dependencies": {
"@next/bundle-analyzer": "^13.1.6",
"axios": "^1.2.6",
"bip32": "^3.1.0",
"bitcoin-address-validation": "^2.2.1",
"bitcoinjs-lib": "github:deezy-inc/bitcoinjs-lib",
"clsx": "^1.2.1",
"ecpair": "^2.1.0",
"ethers": "^5.7.2",
"match-sorter": "^6.3.1",
"next": "^13.1.6",
"next-themes": "^0.1.1",
"nostr-tools": "^1.6.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-bootstrap": "^2.4.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-intersection-observer-hook": "^2.1.1",
"react-loading-icons": "^1.1.0",
"react-toastify": "^9.1.1",
"react-use": "^17.4.0",
"sal.js": "^0.8.5",
"tiny-secp256k1": "^2.2.1"
},
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"format": "prettier --ignore-path .prettierignore --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "eslint --ignore-path .eslintignore . --ext ts --ext tsx --ext js --ext jsx",
"lint:fix": "yarn format & next lint --dir src --fix",
"clean": "rimraf dist"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"description": "Nosft",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-react": "^7.18.6",
"@next/eslint-plugin-next": "^13.0.6",
"eslint": "8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"sass": "^1.58.1"
}
}