-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"name": "openref-lights",
"version": "1.0.0",
"description": "Open-source powerlifting referee light system - Backend & Frontend",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run start:dev",
"dev:frontend": "cd frontend && npm start",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"start:backend": "cd backend && npm run start:prod",
"start:frontend": "cd frontend && npm run start",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "cd backend && npm run lint",
"lint:frontend": "cd frontend && npm run lint",
"format": "prettier --write \"**/*.{ts,js,json,md}\""
},
"devDependencies": {
"concurrently": "^8.2.2",
"prettier": "^3.2.5"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/maandagdev/openref-lights.git"
},
"keywords": [
"powerlifting",
"referee",
"lights",
"competition",
"nestjs",
"angular"
],
"author": "DevWorks",
"license": "MIT"
}