-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.95 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.95 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
{
"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",
"ci:web:build": "pnpm --filter '@samatech/samaquiz' run build:ci",
"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",
"api-test": "./web/api-test/node_modules/.bin/vitest run -r ./web/api-test",
"e2e": "pnpm --filter 'samaquiz-e2e-test' run 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.16.12",
"prettier": "3.5.3",
"stylelint": "16.20.0",
"stylelint-config-recommended-vue": "1.6.0"
}
}