-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 978 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 978 Bytes
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": "my-turborepo",
"description": "A barebones Turborepo example for working with Task Graphs.",
"private": true,
"devDependencies": {
"turbo": "^2.4.0"
},
"scripts": {
"dev": "turbo dev",
"deploy-api": "./deploy-api.sh",
"deploy-frontend": "./deploy-frontend.sh",
"build": "turbo build",
"lint": "turbo lint",
"test": "turbo test"
},
"packageManager": "npm@10.7.0",
"workspaces": [
"apps/*",
"packages/*"
],
"overrides": {
"react": "18.2.0",
"react-dom": "18.2.0",
"@types/react": "18.2.66",
"@types/react-dom": "18.2.22",
"@nestjs/common": "11.1.13",
"@nestjs/core": "11.1.13",
"@nestjs/platform-express": "11.1.13",
"natural-compare-lite": "^1.4.0",
"tsutils": "^3.21.0",
"@babel/eslint-parser": "^7.23.0",
"@emotion/stylis": "^0.8.5"
},
"dependencies": {
"react-icons": "^5.5.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
}
}