-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.15 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.15 KB
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
{
"name": "bitcoin-code",
"version": "2.0.0",
"description": "A powerful code editor and app building platform for Bitcoin",
"license": "Open-BSV",
"author": "The Bitcoin Corporation LTD",
"private": true,
"dependencies": {
"@bsv/sdk": "^1.7.6",
"@codemirror/autocomplete": "^6.19.0",
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/commands": "^6.9.0",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lint": "^6.9.0",
"@codemirror/state": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.38.4",
"@handcash/handcash-sdk": "^0.0.4",
"@monaco-editor/react": "^4.7.0",
"@react-oauth/google": "^0.12.2",
"@scure/base": "^2.0.0",
"@scure/btc-signer": "^2.0.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.0",
"@types/prettier": "^2.7.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.3.3",
"codemirror": "^6.0.2",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"docx": "^9.5.1",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"file-saver": "^2.0.5",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.544.0",
"mammoth": "^1.10.0",
"micro-ordinals": "^0.3.0",
"monaco-editor": "^0.53.0",
"prettier": "^3.6.2",
"quill": "^2.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.5.0",
"react-icons": "^5.5.0",
"react-quill": "^2.0.0",
"react-router-dom": "^6.20.0",
"react-scripts": "5.0.1",
"twitter-api-v2": "^1.27.0",
"typescript": "^4.9.0",
"uuid": "^13.0.0",
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "PORT=3010 react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"api": "node api/server.js",
"dev": "concurrently \"npm run api\" \"npm start\"",
"kill:3000": "lsof -ti:3000 | xargs kill -9",
"kill:dev": "lsof -ti:3000 | xargs kill -9 && lsof -ti:3001 | xargs kill -9",
"kill:all": "for port in {3000..3010}; do lsof -ti:$port | xargs kill -9 2>/dev/null || true; done"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@types/file-saver": "^2.0.7",
"@types/uuid": "^10.0.0",
"assert": "^2.1.0",
"buffer": "^6.0.3",
"concurrently": "^9.2.1",
"crypto-browserify": "^3.12.1",
"electron": "^27.0.0",
"electron-builder": "^26.0.12",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"react-app-rewired": "^2.2.1",
"stream-browserify": "^3.0.0",
"vm-browserify": "^1.1.2",
"wait-on": "^8.0.5"
}
}