-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
169 lines (169 loc) · 5.81 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "@octopost/core",
"version": "0.1.0",
"engines": {
"node": "^20",
"pnpm": "^8"
},
"private": true,
"main": "dist-electron/main.js",
"scripts": {
"mock-api": "json-server mock-api.json",
"start": "concurrently \"node setup.mjs\" \"pnpm build\" \"vite\"",
"build": "tsc && vite build",
"typecheck": "tsc --noEmit",
"changeset": "changeset",
"ci:publish": "pnpm build && changeset publish",
"ci:version": "changeset version",
"code-style": "concurrently \"pnpm lint\" \"pnpm stylelint\" \"pnpm prettier\"",
"commit": "git-cz",
"eject": "vite eject",
"electron:dev": "concurrently \"cross-env BROWSER=none pnpm start -c vite.electron.config.ts\" \"wait-on http://127.0.0.1:3000 && tsc -p electron -w\" \"wait-on http://127.0.0.1:3000 && tsc -p electron && electron .\"",
"electron:build": "pnpm build && electron-builder --windows --config electron-builder.json",
"electron:dist": "pnpm build && tsc -p electron && electron-builder --mac --dir",
"ladle": "ladle serve",
"lint:fix": "eslint . --report-unused-disable-directives --max-warnings 0 --fix",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"prepare": "husky install",
"prettier": "prettier . --check --ignore-unknown",
"prettier:fix": "prettier . --write --ignore-unknown",
"stylelint": "stylelint \"**/*.scss\"",
"test:coverage": "vitest --coverage",
"test:ct": "playwright test -c playwright-ct.config.mts",
"test:e2e": "playwright test --pass-with-no-tests",
"test:ui": "vitest --ui --coverage",
"test": "vitest"
},
"dependencies": {
"@hookform/resolvers": "3.9.0",
"@redux-devtools/extension": "3.3.0",
"@sentry/react": "7.102.0",
"classnames": "2.5.1",
"cors": "2.8.5",
"framer-motion": "10.17.9",
"gsap": "3.12.5",
"i18next": "23.9.0",
"i18next-browser-languagedetector": "7.2.0",
"lodash.debounce": "4.0.8",
"lodash.first": "3.0.0",
"lodash.groupby": "4.6.0",
"lodash.isempty": "4.4.0",
"lodash.merge": "4.6.2",
"lodash.omit": "4.5.0",
"nanoid": "5.0.6",
"normalize.css": "8.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.53.0",
"react-i18next": "13.5.0",
"react-router-dom": "6.22.1",
"zod": "3.23.8",
"zustand": "4.5.1"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.2",
"@commitlint/cz-commitlint": "18.6.1",
"@eslint-community/eslint-plugin-eslint-comments": "4.1.0",
"@eslint/js": "9.1.1",
"@faker-js/faker": "8.4.1",
"@ladle/react": "4.0.2",
"@playwright/experimental-ct-react": "1.41.2",
"@playwright/test": "1.41.2",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "14.5.2",
"@types/cors": "2.8.17",
"@types/electron-devtools-installer": "2.2.5",
"@types/express": "4.17.21",
"@types/lodash.debounce": "4.0.9",
"@types/lodash.first": "3.0.9",
"@types/lodash.groupby": "4.6.9",
"@types/lodash.isempty": "4.4.9",
"@types/lodash.merge": "4.6.9",
"@types/lodash.omit": "4.5.9",
"@types/node": "20.11.19",
"@types/react": "18.2.57",
"@types/react-dom": "18.2.19",
"@types/testing-library__jest-dom": "5.14.9",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"@vitejs/plugin-react-swc": "3.6.0",
"@vitest/coverage-istanbul": "1.3.1",
"@vitest/ui": "1.3.1",
"axios": "1.6.7",
"commitizen": "4.3.0",
"concurrently": "8.2.2",
"cross-env": "7.0.3",
"electron": "24.8.8",
"electron-builder": "24.12.0",
"electron-devtools-installer": "3.2.0",
"electron-is-dev": "2.0.0",
"electron-reload": "2.0.0-alpha.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.1.0",
"eslint-define-config": "2.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-array-func": "5.0.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-import-helpers": "1.3.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-no-secrets": "0.9.1",
"eslint-plugin-only-warn": "1.1.0",
"eslint-plugin-perfectionist": "2.10.0",
"eslint-plugin-playwright": "1.6.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.6",
"eslint-plugin-regexp": "2.5.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-testing-library": "6.2.0",
"eslint-plugin-typescript-sort-keys": "3.1.0",
"eslint-plugin-unicorn": "52.0.0",
"eslint-plugin-vitest": "0.3.22",
"express": "4.18.2",
"globals": "15.1.0",
"husky": "8.0.3",
"jsdom": "22.1.0",
"json-server": "1.0.0-alpha.23",
"lint-staged": "15.2.2",
"postcss": "8.4.35",
"prettier": "3.2.5",
"sass": "1.71.0",
"stylelint": "16.2.1",
"stylelint-config-sass-guidelines": "11.0.0",
"stylelint-order": "6.0.4",
"stylelint-prettier": "5.0.0",
"stylelint-scss": "6.1.0",
"typescript": "5.3.3",
"typescript-eslint": "7.8.0",
"typescript-plugin-css-modules": "5.1.0",
"vite": "5.1.4",
"vite-plugin-electron": "0.15.6",
"vite-plugin-svgr": "4.2.0",
"vite-tsconfig-paths": "4.3.1",
"vitest": "1.3.1",
"wait-on": "7.2.0"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --max-warnings=0",
"prettier --write --ignore-unknown"
],
"*.scss": [
"stylelint --fix",
"prettier --write --ignore-unknown"
]
}
}