forked from composable-com/composable-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 825 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 825 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
{
"name": "composable-workspace",
"version": "0.0.0",
"private": true,
"workspaces": [
"composable-ui",
"packages/*",
"storybook"
],
"scripts": {
"clean": "rm -rf node_modules && rm -rf **/node_modules && rm -rf **/.turbo && rm -rf **/.next",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"format": "prettier --write \"**/*.{ts,tsx,js,json}\"",
"lint": "turbo run lint",
"prepare": "husky install",
"test:ci": "turbo run test:ci",
"ts": "turbo run ts"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "^2.8.3",
"turbo": "^1.7.0"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=18.14"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}