forked from saving-satoshi/saving-satoshi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.97 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
{
"name": "saving-satoshi",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"test": "yarn prettier:check && yarn lint && yarn jest",
"postinstall": "husky install"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "prettier --write"
},
"dependencies": {
"@formatjs/intl-localematcher": "^0.2.32",
"@monaco-editor/react": "^4.6.0",
"@noble/secp256k1": "^2.0.0",
"accept-language": "^3.0.18",
"acorn": "^8.8.2",
"ansi-to-html": "^0.7.2",
"clsx": "^1.2.1",
"constrained-editor-plugin": "^1.3.0",
"framer-motion": "^11.3.27",
"jotai": "^2.8.0",
"jotai-effect": "^1.0.0",
"lodash": "^4.17.21",
"monaco-editor": "^0.36.1",
"monaco-editor-webpack-plugin": "^7.0.1",
"negotiator": "^0.6.3",
"next": "^13.4.19",
"next-transpile-modules": "^10.0.0",
"nostr-hooks": "^1.8.0",
"nostr-tools": "^1.14.2",
"react": "18.2.0",
"react-archer": "^4.4.0",
"react-beautiful-dnd": "10.0.4",
"react-dom": "18.2.0",
"react-lottie": "^1.2.3",
"react-monaco-editor": "^0.52.0",
"react-transition-group": "^4.4.5",
"sjcl": "^1.0.8",
"use-local-storage-state": "^18.1.2"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@types/jest": "^29.5.11",
"@types/node": "18.11.19",
"@types/react": "18.0.25",
"autoprefixer": "^10.4.13",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-local-rules": "^3.0.2",
"husky": "^8.0.2",
"jest": "^29.7.0",
"json-loader": "^0.5.7",
"lint-staged": "^13.1.0",
"postcss": "^8.4.18",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "^3.2.2",
"ts-jest": "^29.1.1",
"typescript": "4.8.4"
}
}