-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1006 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1006 Bytes
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
{
"name": "ammvisualizer",
"version": "0.1.0",
"private": true,
"scripts": {
"sync:soljson": "node scripts/sync-soljson.mjs",
"postinstall": "npm run sync:soljson",
"predev": "npm run sync:soljson",
"dev": "next dev --webpack",
"prebuild": "npm run sync:soljson",
"build": "next build --webpack",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@ethereumjs/common": "^10.1.1",
"@ethereumjs/vm": "^10.1.1",
"idb-keyval": "^6.2.2",
"next": "^16.1.6",
"prismjs": "^1.30.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-simple-code-editor": "^0.14.1",
"solc": "^0.8.33",
"zustand": "^5.0.11"
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@types/node": "^25.2.2",
"@types/prismjs": "^1.26.5",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}