-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.84 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
{
"name": "samaquiz",
"version": "1.0.0",
"description": "Web app for hosting real-time quizzes and polls.",
"engines": {
"node": ">=18",
"npm": ">=8"
},
"type": "module",
"scripts": {
"format": "prettier -w \"{**/*,*}.{ts,js,json}\"",
"format:check": "prettier --check \"{**/*,*}.{ts,js,json,vue}\"",
"lint": "oxlint -c .oxlintrc.json .",
"lint:style": "./node_modules/.bin/stylelint \"**/src/**/*.{css,vue}\"",
"dev:web:run": "pnpm --filter '@samatech/samaquiz' run dev",
"prod:web:build": "pnpm --filter '@samatech/samaquiz' run build",
"prod:web:preview": "pnpm --filter '@samatech/samaquiz' run preview",
"dev:backend:build": "cd backend && cargo build",
"dev:api:build-aarch": "cd backend && CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-unknown-linux-gnu-gcc cargo build --target aarch64-unknown-linux-gnu",
"prod:api:build-aarch": "cd backend && CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-unknown-linux-gnu-gcc cargo build --release --target aarch64-unknown-linux-gnu",
"dev:api:run": "cd backend && cargo run",
"prod:api:build": "cd backend && cargo build --release",
"backend-test": "./web/backend-test/node_modules/.bin/vitest run -r ./web/backend-test",
"skaffold:basic": "(skaffold dev --platform linux/arm64 -f tools/skaffold.basic.yaml --cache-artifacts=true)",
"prune": "tools/scripts/prune-all.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samatechtw/samaquiz.git"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/samatechtw/samaquiz/issues"
},
"homepage": "https://github.com/samatechtw/samaquiz#Readme.md",
"author": "Sam Pullman",
"devDependencies": {
"oxlint": "^0.14.1",
"prettier": "^3.4.2",
"stylelint": "^16.11.0",
"stylelint-config-recommended-vue": "^1.5.0"
}
}