forked from SilenceLeo/snowb-bmf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.74 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.74 KB
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
{
"name": "snowb-bmf",
"version": "1.2.0",
"private": true,
"homepage": "https://snowb.org/",
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"format": "prettier --write src/**/*.{ts,js,tsx} types/**/*.ts",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"lint:check": "yarn lint --max-warnings 0",
"pb": "node scripts/createProtocol.js",
"find-unused": "node scripts/find-unused-files.js",
"find-unused:cleanup": "node scripts/find-unused-files.js --cleanup",
"find-unused:dry-run": "node scripts/find-unused-files.js --cleanup --dry-run",
"predeploy": "yarn build:all",
"deploy": "gh-pages -d build",
"postdeploy": "node scripts/sentry.js",
"prepare": "husky",
"build:app": "node scripts/build.js",
"build:site": "yarn --cwd site build",
"build:merge": "node scripts/merge-build.js",
"build:sitemap": "node scripts/sitemap.js",
"build:all": "yarn build:app && yarn build:site && yarn build:merge && yarn build:sitemap"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.2",
"@mui/material": "^7.3.2",
"@sentry/react": "^9.39.0",
"ajv": "^8.12.0",
"clsx": "^2.0.0",
"color": "^5.0.0",
"dexie": "^4.2.1",
"file-saver": "^2.0.5",
"hotkeys-js": "^3.11.2",
"immer": "^10.1.1",
"jszip": "^3.10.1",
"mobx": "^6.13.7",
"mobx-react-lite": "^4.1.0",
"mobx-utils": "^6.1.0",
"notistack": "^3.0.1",
"opentype.js": "^1.3.4",
"protobufjs": "^7.2.4",
"react": "^19.1.0",
"react-color": "^2.19.3",
"react-dom": "^19.1.0",
"rectangle-packer": "^1.0.4",
"workbox-core": "^7.0.0",
"workbox-expiration": "^7.0.0",
"workbox-precaching": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0"
},
"devDependencies": {
"@cspell/eslint-plugin": "^9.2.0",
"@eslint/js": "^9.31.0",
"@sentry/cli": "^2.47.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/color": "^4.2.0",
"@types/file-saver": "^2.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.14",
"@types/opentype.js": "^1.3.3",
"@types/react": "^19.1.8",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/ui": "^3.2.4",
"cross-env": "^7.0.3",
"cspell": "^9.2.0",
"csstype": "^3.1.3",
"eslint": "^9.31.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"protobufjs-cli": "^1.1.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0",
"vite": "^7.1.11",
"vite-plugin-pwa": "^1.0.3",
"vitest": "^3.2.4"
},
"lint-staged": {
"src/**/*.{css,scss}": [
"prettier --write"
],
"src/**/*.{js,jsx,ts,tsx,json,md}": [
"prettier --write",
"eslint --fix"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}