forked from wowsims/mop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.2 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
{
"name": "mop",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"volta": {
"node": "22.23.2"
},
"scripts": {
"start": "cross-env WATCH=1 make devmode",
"build": "make host",
"format": "npm run lint:fix && npm run fmt:fix",
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix",
"lint:js": "npx oxlint ./ui",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:css": "stylelint \"./ui/**/*.scss\"",
"lint:css:fix": "npm run lint:css -- --fix",
"fmt": "npx oxfmt ui --check",
"fmt:fix": "npx oxfmt ui",
"type-check": "node_modules/typescript/bin/tsc --noEmit",
"test:locales": "node ./test-locales.mjs"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@types/golang-wasm-exec": "^1.15.2",
"@types/pako": "^2.0.0",
"ajv": "^8.17.1",
"apexcharts": "^4.5.0",
"bootstrap": "^5.3.7",
"chart.js": "^4.5.0",
"clsx": "^2.1.1",
"highs": "^1.8.0",
"i18next": "^26.3.6",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^3.0.2",
"pako": "^2.0.4",
"tippy.js": "^6.3.7",
"tsx-vanilla": "^1.2.0",
"uuid": "^11.1.0",
"yalps": "^0.5.6"
},
"devDependencies": {
"@bufbuild/buf": "1.55.1",
"@namics/stylelint-bem": "^10.1.0",
"@protobuf-ts/plugin": "2.9.1",
"@protobuf-ts/plugin-framework": "2.9.0",
"@protobuf-ts/protoc": "2.9.1",
"@protobuf-ts/runtime": "2.9.1",
"@types/bootstrap": "^5.2.10",
"@types/gtag.js": "^0.0.20",
"@types/minimist": "^1.2.5",
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"cross-env": "^7.0.3",
"eslint-plugin-simple-import-sort": "^14.0.0",
"glob": "^13.0.6",
"http-server": "14.1.1",
"oxfmt": "^0.62.0",
"oxlint": "^1.77.0",
"postcss-scss": "^4.0.9",
"sass-embedded": "^1.100.0",
"stylelint": "^16.22.0",
"stylelint-scss": "^6.12.1",
"stylelint-selector-bem-pattern": "^4.0.1",
"typescript": "^7.0.2",
"vite": "^8.2.0",
"vite-plugin-checker": "^0.14.5",
"vite-plugin-i18next-loader": "^3.1.3",
"vite-plugin-stylelint": "^6.3.0"
},
"overrides": {
"http-server": {
"html-encoding-sniffer": "^6.0.0"
},
"vite-plugin-i18next-loader": {
"glob": "$glob",
"ts-deepmerge": "^8.0.0"
}
}
}