-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.36 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.36 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
{
"name": "gameswipe",
"version": "1.0.0",
"description": "A Swipe Web App for deciding what Steam game to play with a group of friends.",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"main": "index.js",
"scripts": {
"dev": "concurrently -n backend,frontend -c auto \"npm -w apps/backend run dev\" \"npm -w apps/frontend run dev\"",
"build": "npm -w packages/shared run build && npm -w apps/backend run build && npm -w apps/frontend run build",
"test": "npm --workspaces run test",
"lint": "npm -w packages/shared run build && npm --workspaces run lint",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Coding-Kitties-Club/GameSwipe.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Coding-Kitties-Club/GameSwipe/issues"
},
"homepage": "https://github.com/Coding-Kitties-Club/GameSwipe#readme",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/pg": "^8.16.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"typescript-eslint": "^8.56.0"
}
}