-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
82 lines (82 loc) · 2.57 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
{
"name": "artistassistapp",
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "CF_PAGES_COMMIT_SHA=$(git rev-parse HEAD) vite",
"build": "tsc -b && vite build",
"build:sentry": "tsc -b && vite build && npm run sentry:sourcemaps",
"preview": "vite preview",
"clean": "rm -rf node_modules/.vite dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --check",
"format:write": "prettier . --write",
"check": "tsc --noEmit",
"test": "npm run check && npm run lint && npm run format",
"prepare": "husky",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org eugene-khyst --project artistassistapp ./dist && sentry-cli sourcemaps upload --org eugene-khyst --project artistassistapp ./dist"
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@fontsource/kalam": "^5.1.0",
"@imgly/background-removal": "^1.5.5",
"@sentry/react": "^8.36.0",
"@tanstack/react-query": "^5.59.18",
"antd": "^5.22.1",
"comlink": "^4.4.1",
"dayjs": "^1.11.13",
"file-saver": "^2.0.5",
"idb": "^8.0.0",
"jose": "^5.9.6",
"print-js": "^1.6.0",
"qrcode.react": "^4.1.0",
"react": "^18.3.1",
"react-compare-slider": "^3.1.0",
"react-dom": "^18.3.1",
"react-sticky-box": "^2.0.5",
"react-string-replace": "^1.1.1",
"react-to-print": "^3.0.2",
"zustand": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@sentry/cli": "^2.38.1",
"@types/file-saver": "^2.0.7",
"@types/node": "^22.8.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.14.0",
"eslint-plugin-license-header": "^0.6.1",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsc-files": "^1.1.4",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vite": "^5.4.10",
"vite-plugin-pwa": "^0.20.5"
},
"lint-staged": {
"**/*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{ts,tsx}": [
"sh -c 'tsc-files --noEmit $(ls -d ./**/* | grep .d.ts) $0 $@'",
"eslint --fix",
"prettier --write"
],
"**/*.{css,html}": "prettier --write"
},
"license": "AGPL-3.0-only"
}