-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "@a110/cushman",
"version": "0.0.13",
"description": "toolkit",
"private": true,
"workspaces": {
"packages": [
"packages/lib/*",
"packages/apps/*"
]
},
"scripts": {
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier -w .",
"pretty-quick": "pretty-quick --staged",
"clean-root": "rimraf docs",
"clean-workspaces": "yarn workspaces run clean",
"clean": "run-s clean-workspaces clean-root",
"build-rito": "yarn workspace @a110/rito build",
"build-rito-sb": "yarn workspace @a110/rito-sb build-storybook",
"build": "run-s build-rito build-rito-sb",
"serve-rito-sb": "yarn workspace @a110/rito-sb serve",
"dev-rito-sb": "yarn workspace @a110/rito-sb dev"
},
"keywords": [],
"author": "Collin Monahan <llaenowyd@gmail.com>",
"license": "ISC",
"devDependencies": {
"husky": "^8.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"yarn": "^1.22.19"
},
"engines": {
"node": ">=16"
}
}