-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.24 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
{
"name": "pixel-map-frontend",
"version": "1.0.0",
"description": "Basic UI for pixel map",
"license": "MIT",
"author": "Sonny <tanasun696@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/fortunaphantom/pixel-map-frontend.git"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier . --write",
"lint": "next lint --fix",
"start": "next start -p 3000",
"typecheck": "tsc --noEmit",
"postinstall": "npx husky install && npx husky set .husky/pre-commit \"npx lint-staged && git add .\" && npx husky set .husky/commit-msg \"npx --no-install commitlint --edit\""
},
"engines": {
"node": ">= 16"
},
"dependencies": {
"@mempool/mempool.js": "^2.3.0",
"@ordzaar/ordit-sdk": "^1.4.0",
"@sadoprotocol/ordit-sdk": "^2.3.12",
"add": "^2.0.6",
"axios": "^1.6.2",
"bitcoin-wallet-adapter": "^1.3.4",
"flowbite": "^2.3.0",
"flowbite-react": "^0.7.2",
"konva": "^9.3.0",
"net": "^1.0.2",
"next": "^14.0.3",
"nextjs-toploader": "^1.6.4",
"react": "18",
"react-dom": "18",
"react-easy-crop": "^5.0.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.12.0",
"react-konva": "^18.2.10",
"react-tailwindcss-datetimepicker": "^3.0.2",
"tailwind-merge": "^2.0.0",
"tls": "^0.0.1",
"use-image": "^1.1.1",
"yarn": "^1.22.21"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"autoprefixer": "^10",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8",
"eslint-config-next": "^14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-sonarjs": "^0.23.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"postcss": "^8",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.7",
"tailwindcss": "^3",
"typescript": "^5"
},
"private": true,
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}