generated from 4201VitruvianBots/scouting-app-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "scouting-app-2025",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "npm run build --workspaces",
"start": "npm run start --workspace server",
"dev": "concurrently \"npm run dev --workspace client\" \"npm run dev --workspace server\"",
"start:remote": "npm run start:remote --workspace server",
"dev:remote": "concurrently \"npm run dev --workspace client\" \"npm run dev:remote --workspace server\"",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --fix .",
"lint:check": "eslint ."
},
"workspaces": [
"client",
"server",
"database",
"requests"
],
"repository": {
"type": "git",
"url": "git+https://github.com/4201VitruvianBots/scouting-app-2023.git"
},
"devDependencies": {
"@types/chroma-js": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"concurrently": "^8.2.2",
"dotenv-mono": "^1.3.13",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"typescript": "^5.3.3"
},
"dependencies": {
"react-select": "^5.8.0"
}
}