-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 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
41
42
{
"name": "placement-management",
"version": "0.0.0",
"private": true,
"author": "VarunSAthreya",
"repository": {
"type": "git",
"url": "git+https://github.com/VarunSAthreya/placement-management.git"
},
"keywords": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/VarunSAthreya/placement-management/issues"
},
"homepage": "https://github.com/VarunSAthreya/placement-management#readme",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev --parallel",
"start": "turbo run start --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"test": "turbo run test",
"api:dev": "yarn workspace api dev",
"web:dev": "yarn workspace web dev",
"gen": "turbo run gen"
},
"dependencies": {},
"devDependencies": {
"prettier": "latest",
"turbo": "^1.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
}
}