-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.72 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
{
"name": "eecircuit",
"source": "index.html",
"version": "0.0.1",
"description": "Circuit Simulator",
"type": "module",
"scripts": {
"dev": "vite --port 5173 --force --host",
"build": "vite build && ./copy_workers.sh",
"preview": "vite preview",
"lint": "eslint",
"check": "tsc --noEmit && tsc -p tests/tsconfig.json --noEmit && eslint .",
"deploy": "wrangler deploy"
},
"author": "Danial Chitnis",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-transform-react-jsx-development": "^7.27.1",
"@babel/plugin-transform-react-jsx-source": "^7.27.1",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.58.2",
"@rolldown/plugin-babel": "^0.2.2",
"@types/babel__core": "^7",
"@types/node": "^25.5.0",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"playwright": "^1.58.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.55.0",
"vite": "^8.0.3",
"wrangler": "^4.78.0"
},
"dependencies": {
"@chakra-ui/react": "^3.34.0",
"@danchitnis/svg-to-pdf": "^1.0.0",
"@emotion/react": "^11.14.0",
"@icons-pack/react-simple-icons": "^13.13.0",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eecircuit-engine": "file:../EEcircuit-engine",
"eecircuit-schematic": "file:../EEcircuit-schematic",
"lodash.debounce": "^4.0.8",
"lucide-react": "^1.7.0",
"monaco-editor": "^0.55.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"webgl-plot": "^1.1.2",
"zustand": "^5.0.12"
}
}