-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.01 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
{
"name": "trackfootball",
"version": "2.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "nx run-many --parallel 1 --output-style=stream --target=dev --projects @trackfootball/next-js-app",
"build": "nx run-many --parallel 4 --output-style=stream --target=build --projects @trackfootball/*",
"start": "nx run-many --parallel 1 --output-style=stream --target=start --projects @trackfootball/next-js-app",
"test": "nx run-many --parallel 4 --output-style=stream --target=test --projects @trackfootball/*",
"lint": "nx run-many --parallel 4 --output-style=stream --target=lint --projects @trackfootball/*",
"migrate": "nx run-many --parallel 1 --output-style=stream --target=lint --projects @trackfootball/database"
},
"devDependencies": {
"nx": "16.10.0",
"nx-cloud": "latest"
},
"dependencies": {
"typescript": "5.4.5"
},
"nx": {
"targets": {
"build": {
"outputs": [
"{projectRoot}/.next"
]
}
}
}
}