-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "eecircuit",
"source": "./src/index.html",
"version": "0.0.1",
"description": "Circuit Simulator",
"scripts": {
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
"vercel-prod": "vercel --prod",
"vercel": "vercel",
"serve": "serve dist",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "web-test-runner \"src/**/*.test.tsx\""
},
"author": "Danial Chitnis",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/plugin-transform-react-jsx-development": "^7.25.7",
"@playwright/test": "^1.47.2",
"@preact/preset-vite": "^2.9.1",
"@types/babel__core": "^7",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"babel-plugin-transform-hook-names": "^1.0.2",
"csv-parser": "^3.0.0",
"eslint": "^9.12.0",
"prettier": "^3.3.3",
"process": "^0.11.10",
"serve": "^14.2.3",
"simple-git": "^3.27.0",
"typescript": "^5.6.2",
"vercel": "^37.6.1",
"vite": "^5.4.8"
},
"dependencies": {
"@chakra-ui/react": "2.10.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"comlink": "^4.4.1",
"framer-motion": "^11.11.1",
"monaco-editor": "^0.52.0",
"preact": "^10.24.2",
"react-focus-lock": "^2.13.2",
"webgl-plot": "^0.7.1"
}
}