-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.2 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "based-launcher",
"version": "1.0.11",
"description": "Feature-rich, dmenu-compatible app launcher for Linux",
"scripts": {
"dev": "vite",
"postinstall": "neon build",
"build": "electron-build-env neon build && tsc && vite build && electron-builder",
"themes": "sass themes",
"themes:watch": "sass themes --watch",
"test": "vitest --run && cd native && cargo test --release",
"coverage": "vitest run --coverage",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"electron/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" \"electron/**/*.ts\" --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "nukeop <[email protected]>",
"license": "AGPL-3.0",
"main": "dist/electron/main/index.js",
"devDependencies": {
"@babel/core": "^7.18.13",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-vite": "^0.2.2",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@storybook/theming": "^6.5.10",
"@tailwindcss/line-clamp": "^0.4.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/fparser": "^2.0.0",
"@types/lodash": "^4.14.185",
"@types/react": "^18.0.17",
"@types/react-calendar": "^3.5.3",
"@types/react-dom": "^18.0.6",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@vitejs/plugin-react": "^2.0.1",
"@vitest/coverage-c8": "^0.23.2",
"@vitest/ui": "^0.23.2",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"cargo-cp-artifact": "^0.1.6",
"electron": "^20.0.2",
"electron-build-env": "^0.2.0",
"electron-builder": "^23.3.3",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-testing-library": "^5.6.4",
"happy-dom": "^6.0.4",
"jsdom": "^20.0.0",
"neon-cli": "^0.10.1",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.54.4",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4",
"vite": "^3.0.7",
"vite-plugin-electron": "^0.9.2",
"vitest": "^0.22.1",
"vitest-fetch-mock": "^0.2.1",
"vitest-mock-process": "^1.0.4"
},
"env": {
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 7777
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"classnames": "^2.3.1",
"commander": "^9.4.0",
"electron-store": "^8.1.0",
"fparser": "^2.0.2",
"freedesktop-icons": "^1.0.0",
"fuse.js": "^6.6.2",
"glasstron": "^0.1.1",
"lodash": "^4.17.21",
"react-calendar": "^3.9.0",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.7",
"winston": "^3.8.1",
"xdg-basedir": "^5.1.0"
}
}