-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "spice-glass",
"version": "0.0.0",
"description": "",
"main": "dist-electron/main/index.js",
"engines": {
"node": "18"
},
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"scripts": {
"start": "vite",
"start:docker:mem": "docker compose up -d --wait",
"start:docker:persist": "COMPOSE_FILE=docker-compose.persist.yaml docker compose up -d --wait",
"zed:init": "./scripts/zed.sh schema write schema.zaml && zed schema read",
"bootstrap": "npm run start:docker:mem && npm run zed:init && npm run start",
"build": "tsc && vite build",
"build:production": "npm run build && electron-builder",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint --cache --fix --format=visualstudio ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/gwinchesters/spice-glass.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gwinchesters/spice-glass/issues"
},
"homepage": "https://github.com/gwinchesters/spice-glass#readme",
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@authzed/authzed-node": "^0.11.0",
"antd": "^5.4.6",
"electron-context-menu": "^3.6.1",
"electron-updater": "^5.3.0",
"lodash": "^4.17.21",
"tslog": "^4.8.2",
"zustand": "^4.3.7"
},
"devDependencies": {
"@types/lodash": "^4.14.194",
"@types/node": "^18.16.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vitejs/plugin-react": "^4.0.0",
"electron": "^24.1.3",
"electron-builder": "^23.6.0",
"eslint": "^8.39.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jsdom": "^21.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.4",
"vite": "^4.3.3",
"vite-plugin-electron": "^0.11.2",
"vite-plugin-electron-renderer": "^0.14.1",
"vitest": "^0.30.1"
},
"precommit": [
"build",
"lint"
]
}