-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 932 Bytes
/
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
{
"name": "root",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/azure",
"packages/clear-mind",
"packages/kite",
"packages/lorelaine",
"packages/marley",
"packages/parking",
"packages/quagmire",
"packages/roundabout",
"packages/vapor",
"packages/xinix",
"packages/config-base",
"packages/api",
"packages/ui",
"packages/utils"
],
"scripts": {
"build": "turbo run build --no-daemon",
"dev": "turbo run dev --parallel --no-daemon",
"lint": "turbo run lint --no-daemon",
"lint:fix": "turbo run lint:fix --no-daemon",
"lint:quiet": "turbo run lint:quiet --no-daemon",
"prettier": "turbo run prettier --no-daemon",
"test": "turbo run test --no-daemon"
},
"devDependencies": {
"ts-node": "10.9.1",
"turbo": "1.10.12",
"typescript": "5.1.6"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
}
}