-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "vizcal",
"version": "1.0.0",
"description": "Visualizing concepts is a great way to learn them. It is also a great way to teach them. Vizcal is a tool to help you visualize Calculus concepts.",
"main": "./out/main/index.js",
"author": "Calculus-Oriented Creative Kids",
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"test": "vitest",
"start": "electron-vite preview",
"dev": "electron-vite dev --watch",
"build": "electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config",
"build:mac": "npm run build && electron-builder --mac --config",
"build:linux": "npm run build && electron-builder --linux --config"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0",
"desmos-react": "^1.2.0",
"fs": "^0.0.1-security",
"pure-react-carousel": "^1.30.1",
"react-feather": "^2.0.10",
"react-slider": "^2.0.6",
"uuid": "^9.0.1"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"devDependencies": {
"@electron/notarize": "^2.3.0",
"@testing-library/react": "^14.2.1",
"@vitejs/plugin-react": "^4.2.1",
"electron": "^29.1.3",
"electron-builder": "^24.13.3",
"electron-vite": "^2.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.72.0",
"vite": "^5.1.6",
"vitest": "^1.3.1"
}
}