-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1004 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
40
41
42
43
44
45
46
47
{
"private": true,
"name": "@turbo/nike",
"type": "module",
"author": "Dmitriy Kvant",
"scripts": {
"preinstall": "npx only-allow yarn",
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo test",
"test:e2e": "turbo test:e2e",
"format": "prettier -w .",
"cspell-check": "cspell .",
"storybook": "turbo storybook",
"build-storybook": "turbo build-storybook"
},
"devDependencies": {
"@turbo/eslint-config": "*",
"@turbo/prettier-config": "*",
"@turbo/typescript-config": "*",
"cspell": "8.8.4",
"eslint": "8.57.0",
"prettier": "3.3.2",
"turbo": "1.13.4",
"typescript": "5.4.3"
},
"dependenciesMeta": {
"@nextui-org/[email protected]": {
"unplugged": true
},
"@trivago/[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
}
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}