forked from synthparadox/EggLedger
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.15 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.15 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
{
"license": "MIT",
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@types/node": "^25.6.0",
"@vitejs/plugin-vue": "^6.0.5",
"autoprefixer": "^10.4.19",
"eslint": "^9",
"eslint-plugin-sonarjs": "^4",
"eslint-plugin-vue": "^9",
"postcss": "^8.5.10",
"postcss-cli": "^11.0.0",
"tailwindcss": "^3.4.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8",
"vite": "^8.0.8",
"vue-tsc": "^2.2.12"
},
"scripts": {
"build": "node scripts/build-vite.js",
"build:force": "vite build --config www/vite.config.ts",
"build:css": "node scripts/build-css.js",
"dev": "vite build --watch --config www/vite.config.ts",
"lint": "eslint --config www/eslint.config.mjs www/src",
"protobuf": "protoc --proto_path=. --go_out=paths=source_relative:. ei/ei.proto",
"sync": "npm run sync:proto && npm run sync:eiafx",
"sync:proto": "bash --login scripts/sync-proto.sh ../EggIncProtos",
"sync:eiafx": "bash scripts/sync-eiafx.sh ../EggIncAPITools %EID%",
"typecheck": "vue-tsc --noEmit --project www/tsconfig.json"
},
"dependencies": {
"marked": "^18.0.0",
"vue": "^3.5.32"
}
}