-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.47 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
97
98
99
100
{
"name": "brick-manager",
"version": "0.1.1",
"description": "Manage your LEGO inventory",
"main": "./build/main.bundle.js",
"author": "Ben Yap <[email protected]>",
"license": "GPL-3.0",
"homepage": "https://github.com/benyap/brick-manager#README.md",
"repository": "https://github.com/benyap/brick-manager",
"bugs": "https://github.com/benyap/brick-manager/issues",
"scripts": {
"gen": "cross-env HYGEN_TMPLS=.templates hygen",
"format": "prettier 'src/**/*.ts' --write",
"lint": "eslint 'src/**/*.{ts,tsx}' --fix",
"test": "mocha -r ts-node/register -r tsconfig-paths/register 'test/**/*.ts'",
"script": "yarn env-cmd ts-node",
"start": "electron ./build/main.bundle.js",
"dev": "rimraf build/* && yarn concurrently --kill-others -n w: 'yarn:dev:*'",
"dev:build:app": "cross-env NODE_ENV=development yarn build:app --watch",
"dev:build:css": "yarn build:css --watch",
"dev:serve": "wait-on build/main.bundle.js && cross-env NODE_ENV=development yarn start",
"build": "rimraf build/* && yarn build:css && cross-env NODE_ENV=production yarn build:app --progress",
"build:app": "webpack --color",
"build:css": "tailwindcss -i src/renderer/styles.css -o build/styles.css",
"make": "rimraf dist/* && yarn make:mac && yarn make:win",
"make:mac": "electron-builder build --mac --x64",
"make:win": "electron-builder build --win --x64",
"release": "env-cmd release-it"
},
"dependencies": {
"@headlessui/react": "1.4.3",
"clsx": "1.1.1",
"date-fns": "2.28.0",
"electron-context-menu": "3.1.1",
"electron-store": "8.0.1",
"electron-util": "0.17.2",
"fuse.js": "6.5.3",
"jotai": "1.5.0",
"lowdb": "3.0.0",
"nanoid": "3.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hotkeys-hook": "3.4.4",
"react-router": "6.2.1",
"react-router-dom": "6.2.1",
"react-virtualized-auto-sizer": "1.0.6",
"react-window": "1.8.6",
"zod": "3.11.6"
},
"devDependencies": {
"@release-it/bumper": "3.0.1",
"@release-it/conventional-changelog": "3.3.0",
"@tailwindcss/forms": "0.4.0",
"@types/mocha": "9.0.0",
"@types/node": "17.0.8",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"@types/react-router": "5.1.17",
"@types/react-router-dom": "5.3.2",
"@types/react-virtualized-auto-sizer": "1.0.1",
"@types/react-window": "1.8.5",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"autoprefixer": "10.4.2",
"axios": "0.24.0",
"concurrently": "7.0.0",
"copy-webpack-plugin": "10.2.0",
"cross-env": "7.0.3",
"css-loader": "6.5.1",
"electron": "16.0.6",
"electron-builder": "22.14.5",
"env-cmd": "10.1.0",
"eslint": "8.6.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"hygen": "6.1.0",
"lodash": "4.17.21",
"mocha": "9.1.3",
"postcss": "8.4.5",
"prettier": "2.5.1",
"release-it": "14.11.8",
"rimraf": "3.0.2",
"source-map-loader": "3.0.1",
"spectron": "15.0.0",
"style-loader": "3.3.1",
"tailwindcss": "3.0.12",
"ts-loader": "9.2.6",
"ts-node": "10.4.0",
"tsconfig-paths": "3.12.0",
"typescript": "4.5.4",
"wait-on": "6.0.0",
"webpack": "5.65.0",
"webpack-cli": "4.9.1"
}
}