-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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": "summit-up-design-system",
"version": "0.0.6",
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build --parallel",
"build-storybook": "turbo run build-storybook",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "eslint . --fix && prettier --write .",
"format": "turbo run format",
"clean": "turbo run clean",
"icons": "yarn workspace @zagdang/icons",
"colors": "yarn workspace @zagdang/colors",
"ui": "yarn workspace @zagdang/ui",
"typescript": "turbo run typescript",
"test": "turbo run test "
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@esbuild/linux-arm64": "0.24.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.1",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"esbuild": {
"supportedArchitectures": [
"x64",
"arm64"
]
}
}